Spring中的aware接口详情
435
2022-09-11
PC网络配置切换脚本(IP地址切换脚本)(ip地址切换工具pc)
1、设置IP地址为静态地址:(set.cmd ) @echo off netsh interface ip set address name="本地连接" source = static addr=192.168.0.24 mask=255.255.255.0 gateway=192.168.0.1 gwmetric=auto rem netsh interface ip set dns name="本地连接" source=static addr=202.96.128.86 register=primary netsh interface ip set dns 本地连接 static 202.96.128.86 primary netsh interface ip add dns 本地连接 202.96.128.166 index=2 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f 2、设置IP地址为自动获取(dhcp.cmd) @echo off netsh interface ip set address name="本地连接" source=dhcp netsh interface ip set dns name="本地连接" source=dhcp reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "gzproxy.ip.com:8080" /f reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyOverride /t REG_SZ /d "localhost;10.*;*.ip.com" /f #网络管理
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~