转载——DOS下设置IP
设置/修改IP地址,子网掩码,网关的格式:
netsh interface ip set address "本地连接" static 10.25.35.35 255.255.255.0 10.25.35.7 auto
命令的意思是将“本地连接”的
ip地址设置成 10.25.35.35
子网掩码是 255.255.255.0
网关设置成 10.25.35.7 并且自动跃点数
注意:"本地连接"处请根据自己的情况修改
设置DNS命令格式:
netsh interface ip set dns "本地连接" static 211.138.91.1
命令的意思是将“本地连接”的DNS设置成211.138.91.1
删除IP地址和DNS的命令是
netsh interface ip set address "本地连接" dhcp
netsh interface ip set dns "本地连接" dhcp
阅读(848) | 评论(0) | 转发(0) |