BAT腳本實現(xiàn)自動IP地址切換?
更新時間:2022年03月09日 09:27:30 作者:free0006
本文主要介紹了BAT腳本實現(xiàn)自動IP地址切換,文中通過示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
BAT自動IP地址切換腳本如下:
@echo off color 3f mode con cols=80 lines=30 title 自動IP地址切換腳本 By 小強 if "%1"=="1" goto office if "%1"=="2" goto Home if "%1"=="3" goto dhcp :start cls echo= echo ============================================================================ echo= echo 1.切換到辦公室IP echo= echo 2.切換到家里的IP echo= echo 3.切換到自動獲取 echo= echo 0.退·出·腳·本 echo= echo ============================================================================ echo= set choice= set /p choice=請輸入你的選擇: if "%choice%"=="1" goto office if "%choice%"=="2" goto Home if "%choice%"=="3" goto dhcp if "%choice%"=="0" exit echo 輸入有誤,請重新選擇! pause>nul goto start :office cls cls echo. echo 正在設(shè)置IP為辦公IP請等待... echo. set net_interface="本地連接" echo 設(shè)置IP中... netsh interface ip set address "%net_interface%" source=static addr=192.168.0.5 mask=255.255.255.0 echo 設(shè)置IP成功...設(shè)置網(wǎng)關(guān)中... netsh interface ip set address name="%net_interface%" gateway=192.168.0.1 gwmetric=1 echo 設(shè)置網(wǎng)關(guān)成功...設(shè)置DNS中... netsh interface ip set dns "%net_interface%" static 202.98.0.68 netsh interface ip add dns "%net_interface%" 202.98.5.68 index=2 echo IP已成功切換到辦公設(shè)置,任意鍵返回... pause>nul goto start :home cls echo. echo 正在設(shè)置為家用IP請等待... echo. set net_interface="本地連接" echo 設(shè)置IP中... netsh interface ip set address "%net_interface%" source=static addr=192.168.1.111 mask=255.255.255.0 echo 設(shè)置IP成功...設(shè)置網(wǎng)關(guān)中... netsh interface ip set address name="%net_interface%" gateway=192.168.1.1 gwmetric=1 echo 設(shè)置網(wǎng)關(guān)成功...設(shè)置DNS中... netsh interface ip set dns "%net_interface%" static 218.85.152.99 netsh interface ip add dns "%net_interface%" 218.85.157.99 index=2 echo IP已成功切換到辦公設(shè)置,任意鍵返回... pause>nul goto start :DHCP echo. echo 正在設(shè)置IP為自動獲取,請等待... echo. set net_interface="本地連接" echo 設(shè)置IP中... netsh interface ip set address name="%net_interface%" source=dhcp echo 設(shè)置網(wǎng)關(guān)成功...設(shè)置DNS中... netsh interface ip set dns "%net_interface%" source=dhcp echo 設(shè)置成功!按任意鍵返回選擇菜單。 pause>nul GOTO start
到此這篇關(guān)于BAT腳本實現(xiàn)自動IP地址切換 的文章就介紹到這了,更多相關(guān)BAT IP地址切換 內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
用批處理實現(xiàn)的創(chuàng)建帶日期的文件夾的代碼
我想用批處理創(chuàng)建一個帶日期的文件夾,比如:照片200809 其中“照片”是特定的字符,"200809” 系統(tǒng)的當(dāng)前年份和朋份2010-11-11

