切換 ip 批處理

2021-09-06 05:05:32 字數 890 閱讀 2707

自動獲取

設定固定值

@echo off

rem eth       //設定網絡卡名稱,如"本地連線"

set eth="無線網路連線"

rem ip         //設定ip位址

set ip=192.168.1.243

rem gw         //設定閘道器

set gw=192.168.1.1

rem netmasks   //設定子網掩碼

set netmasks=255.255.255.0

rem dns1       //設定主dns

set dns1=192.168.1.1

rem dns2       //設定輔dns

set dns2=192.168.1.1

echo 正在將本機ip更改到:%ip%

netsh inte***ce ip set address "%eth%" static %ip% %netmasks% %gw%

echo 正在新增本機主dns:%dns1%

netsh inte***ce ip set dns "%eth%" static %dns1%

echo 正在新增本機副dns:%dns2%

netsh inte***ce ip add dns "%eth%" %dns2%

echo ------------------------------

echo   ip更改完畢,檢查當前配置...

echo ------------------------------

ipconfig /all

pause

close

切換ip批處理檔案

echo off ipconfig findstr 外網ip if errorlevel equ 0 goto ip1goto ip2 ip1 echo 設定商密網ip.netsh inte ce ip set address name 本地連線 source static addr 內網ip位址 ...

Windows系統自動切換IP批處理

對於同時使用內外網的使用者來說,經常需要手動切換內外網的ip。現提供乙個自動切換ip的批處理。windows7如下 netsh inte ce ip set address name 本地連線 source static addr 192.168.1.55 mask 255.255.255.0 ga...

IP位址DHCP與STATIC切換批處理指令碼

echo off set 請根據您的引數修改以下資料 設定 ip位址 set ipaddress 192.168.10.43 設定 子掩碼 set mask 255.255.254.0 設定 閘道器 set gateway 192.168.10.1 設定 首選dns伺服器 set dns1 220....