修改IP位址的cmd指令碼

2021-06-28 04:24:38 字數 686 閱讀 6778

@echo off 

cls 

color 0a 

echo ip位址更改小工具 

set ip=192.168.1.1 

set mask=255.255.255.0 

set gateway=192.168.1.0 

set name="本地連線" 

echo. 

echo 自動更改ip 請按 1 

echo. 

echo 手動更改ip 請按 2 

set /p key= [您的選擇是:] 

if %key% == 1 goto one 

if %key% == 2 goto two 

:two 

echo 您選擇了手工修改設定。 

echo. 

echo 預設ip位址是%ip%,回車輸入預設位址 

echo. 

echo 預設mask是%mask%,回車輸入預設值 

echo. 

echo 預設gateway是%gateway%,回車輸入預設值 

echo. 

:one 

echo 正在自動更改ip...... 

netsh inte***ce ip set address %name% static %ip% %mask% %gateway% 

pause 

用vbs指令碼修改IP位址

工作需要,經常要在n個固定ip位址間切換。煩。上script center,居然發現還可以用指令碼來設定ip。這下方便多啦,儲存為乙個vbs檔案,雙擊就能直接改ip了。strip 192.168.198.4 strmask 255.255.255.0 strgw 192.168.198.1 strd...

修改IP的cmd命令

修改ip的cmd命令 設定固定ip 1.開啟執行 win r 2.鍵入cmd 3.輸入命令 netsh inte ce ip set address 乙太網 static 192.168.2.221 255.255.255.0 192.168.2.254 netsh i i set address ...

修改Ip位址

臨時ip管理 ifconfig 網絡卡名 自己要設定的ip root fengjunhong fjh ifconfig ens33 192.168.1.120 重啟網路 centos7.x root fengjunhong fjh systemctl restart network centos6....