(一)命令行交互配置
D:\>netsh netsh>interface netsh interface>ip netsh interface ip>show address
接口 "本地连接" 的配置 DHCP 启用 否 IP 地址 192.168.0.12 子网掩码 255.255.255.0 默认网关: 192.168.0.1 GatewayMetric: 0 InterfaceMetric 0 netsh interface ip>set address "本地连接" static 192.168.0.13 255.255.255.0 192.168.0.1 0
确定。 |
1.用“show address”查看需配置的网卡接口,这里是“本地连接”
2.格式:
set address 网卡接口 static IP地址 掩码 网关 GatewayMetric
(注意GatewayMetric不要忘记,以上配置中GatewayMetric为0)
(二)编写批处理脚本
1.新建ipconf.txt,写入:
netsh interface ip set address "本地连接" static 192.168.0.13 255.255.255.0 192.168.0.1 0
2.将ipconf.txt改名为ipconf.bat
3.执行ipconf.bat |
阅读(1171) | 评论(0) | 转发(0) |