IP Adresse per Command Line setzen
Hallo zusammen,
Den meisten Sysadmins erzähle ich hier nichts neues. Aber das netsh Command Line Utility ist echt stark. Hier etwas ganz alltägliches. Eine Fixe IP muss gesetzt werden, danach wieder auf DHCP umstellen. Muss ich ganz oft machen - deshalb habe ich das mal gescripted.
Fixe IP setzen
netsh interface ipv4 set address name="LAN-Verbindung" source=static addr=172.21.175.220 mask=255.255.255.0 gateway=172.21.175.1
netsh interface ipv4 set dns "LAN-Verbindung" source=static addr=172.21.175.20
netsh interface ipv4 add dns "LAN-Verbindung" source=static addr=172.21.175.30 index=2
netsh interface ipv4 add dns "LAN-Verbindung" source=static addr=172.21.175.30 index=2
netsh interface ipv4 set wins "LAN-Verbindung" source=static addr=172.21.175.20
netsh interface ipv4 add wins "LAN-Verbindung" source=static addr=172.21.175.30 index=2
netsh interface ipv4 add wins "LAN-Verbindung" source=static addr=172.21.175.30 index=2
DHCP
netsh interface ipv4 set address name="LAN-Verbindung" source=dhcp
netsh interface ipv4 set dns "LAN-Verbindung" source=dhcp
netsh interface ipv4 set wins "LAN-Verbindung" source=dhcp
Das ganze kann in über eine Batchdatei gestartet werden. Benötigt in jedem Fall aber Admin Rechte oder muss unter Vista und Windows 7 mit erhöhten Rechten ausgeführt werden.
Grüsse
Andres Bohren