- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- Windows/コマンド/netsh - ネットワークアダプタ設定 へ行く。
- 1 (2012-06-16 (土) 22:50:37)
- 2 (2012-06-16 (土) 23:07:42)
netsh - TCP/IP制御
対話式
C:\Users\taro>netsh netsh>interface netsh interface>ip netsh interface ipv4>show addresses
インターフェイスの構成 "ローカル エリア接続" DHCP 有効: はい IP アドレス: 192.168.0.10
設定の確認
netsh interface ip show config
固定IPアドレスの設定
netsh interface ip set address "ローカル エリア接続" ^ static 192.168.0.50 255.255.255.0 192.168.0.1
DHCPの設定
netsh interface ip set address "ローカル エリア接続" dhcp
DNSサーバの設定
netsh interface ip set dns "ローカル エリア接続" static 192.168.0.1
DNSサーバの追加
netsh interface ip add dns "ローカル エリア接続" 192.168.0.2
参考
http://www.atmarkit.co.jp/fwin2k/win2ktips/1264netship/netship.html