IP adresi statik olarak set edilecekse aşağıdaki komut kullanılır. IP adresi 192.168.0.1 Subnet 255.255.255.0 ağ geçidi 192.168.0.254 ise;
Windows bilgisayarda komut satırını yetkili kullanıcı ile açın.
netsh interface ip set address name=”Ethernet arayüzünün adı” static 192.168.0.1 255.255.255.0 192.168.0.254
Şeklinde komutu yazın ve enter'a basın. IP adresi yukarıda belirlediğiniz gibi değişecektir.
IP adresini otomatik olarak almak için;
netsh interface ip set address name=”Ethernet arayüzünün adı” source=dhcp
Ethernet arayüzünün DNS adresini değiştirmek için;
netsh interface ip set dns name=”Ethernet arayüzünün adı” static 192.168.0.250
Ethernet arayüzüne yeni bir DNS adresi eklemek için;
netsh interface ip add dns name=”Ethernet arayüzünün adı” 8.8.8.8 index=2
Ethernet arayüzünün DNS adresini DHCP üzerinden otomatik olarak alması için;
netsh interface ip set dnsservers name=”Ethernet arayüzünün adı” source=dhcp
Komutları kullanılır. IP adresi komut satırında nasıl bakılır; ip adresini komut satırında görme.
ipconfig
Komut çıktısı:
LAN adapter:
Connection-specific DNS Suffix . :
IPv6 Address. . . . . . . . . . . :
Temporary IPv6 Address. . . . . . :
Link-local IPv6 Address . . . . . :
IPv4 Address. . . . . . . . . . . :
Subnet Mask . . . . . . . . . . . :
Default Gateway . . . . . . . . . :
ip adres konfigürasyonuna komut satırında ayrıntılı bir şekilde bakmak için;
ipconfig /all
Komut çıktısı:
LAN adapter:
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Intel(R)
Physical Address. . . . . . . . . :
DHCP Enabled. . . . . . . . . . . : Yes
Autoconfiguration Enabled . . . . : Yes
IPv6 Address. . . . . . . . . . . :
Temporary IPv6 Address. . . . . . :
Link-local IPv6 Address . . . . . :
IPv4 Address. . . . . . . . . . . :
Subnet Mask . . . . . . . . . . . :
Lease Obtained. . . . . . . . . . :
Lease Expires . . . . . . . . . . :
Default Gateway . . . . . . . . . :
DHCP Server . . . . . . . . . . . :
DHCPv6 IAID . . . . . . . . . . . :
DHCPv6 Client DUID. . . . . . . . :
DNS Servers . . . . . . . . . . . :
NetBIOS over Tcpip. . . . . . . . : Enabled
Serkan