BAT腳本實現自動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 正在設置IP為辦公IP請等待...
echo.
set net_interface="本地連接"
echo 設置IP中...
netsh interface ip set address "%net_interface%" source=static addr=192.168.0.5 mask=255.255.255.0
echo 設置IP成功...設置網關中...
netsh interface ip set address name="%net_interface%" gateway=192.168.0.1 gwmetric=1
echo 設置網關成功...設置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已成功切換到辦公設置,任意鍵返回...
pause>nul
goto start
 
:home
cls
echo.
echo 正在設置為傢用IP請等待...
echo.
set net_interface="本地連接"
echo 設置IP中...
netsh interface ip set address "%net_interface%" source=static addr=192.168.1.111 mask=255.255.255.0
echo 設置IP成功...設置網關中...
netsh interface ip set address name="%net_interface%" gateway=192.168.1.1 gwmetric=1
echo 設置網關成功...設置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已成功切換到辦公設置,任意鍵返回...
pause>nul
goto start
 
:DHCP
echo.
echo 正在設置IP為自動獲取,請等待...
echo.
set net_interface="本地連接"
echo 設置IP中...
netsh interface ip set address name="%net_interface%" source=dhcp
echo 設置網關成功...設置DNS中...
netsh interface ip set dns "%net_interface%" source=dhcp
echo 設置成功!按任意鍵返回選擇菜單。
pause>nul
GOTO start

到此這篇關於BAT腳本實現自動IP地址切換 的文章就介紹到這瞭,更多相關BAT IP地址切換 內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: