求填写ip地址的bat文件
答案:2 悬赏:70 手机版
解决时间 2021-02-24 09:26
- 提问者网友:遁入空寂
- 2021-02-24 02:43
两个文件,第一个:本地连接,ip 192.168.1.8,子网掩码255.255.255.0,网关192.168.1.1,主dns服务器58.22.96.66,备用dns服务器218.104.128.106;第二个文件ip和dns服务器全部为自动获取
最佳答案
- 五星知识达人网友:怙棘
- 2021-02-24 03:15
第一个设置静态ip
@echo off
netsh interface ip set address 本地连接 static 192.168.1.8 255.255.255.0 192.168.1.1 1
netsh interface ip set dns 本地连接 static 58.22.96.66
netsh interface ip add dns 本地连接 218.104.128.106 2
pause第二个设置为DHCP,自动获取
@echo off
netsh interface ip set address 本地连接 dhcp
netsh interface ip set dns 本地连接 dhcp
pause
@echo off
netsh interface ip set address 本地连接 static 192.168.1.8 255.255.255.0 192.168.1.1 1
netsh interface ip set dns 本地连接 static 58.22.96.66
netsh interface ip add dns 本地连接 218.104.128.106 2
pause第二个设置为DHCP,自动获取
@echo off
netsh interface ip set address 本地连接 dhcp
netsh interface ip set dns 本地连接 dhcp
pause
全部回答
- 1楼网友:鸽屿
- 2021-02-24 03:26
第一个设置静态ip
@echo off netsh interface ip set address 本地连接 static 192.168.1.8 255.255.255.0 192.168.1.1 1 netsh interface ip set dns 本地连接 static 58.22.96.66 netsh interface ip add dns 本地连接 218.104.128.106 2 pause第二个设置为dhcp,自动获取
@echo off netsh interface ip set address 本地连接 dhcp netsh interface ip set dns 本地连接 dhcp pause我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯