IPアドレス DNS 設定 取得

 

●設定

@echo off
netsh interface ipv4 set add name="イーサネット" source=dhcp
netsh interface ipv4 set dns name="イーサネット" source=static addr="8.8.4.4" register=non validate=no
netsh interface ipv4 add dns name="イーサネット" addr="8.8.8.8" index=2 validate=no
pause
exit

2台のDNSサーバを割り当てる例
netsh interface ip set dns “ローカル エリア接続 3” static 172.16.1.11 primary
netsh interface ip add dns “ローカル エリア接続 3” 172.16.1.12

●取得
netsh interface ip show
show dnsservers