小批處理命令,自動來修改ip
將以下內容儲存到為bat格式就可以了。
@echo off
echo.
echo 修改ip位址,1為自動獲取ip位址,2為修改家裡ip位址,3 為公司ip
echo.set sel=
set/p sel=請選擇修改方式:
if "%sel%"=="1" goto auto
if "%sel%"=="2" goto home
if "%sel%"=="3" goto company
echo 您沒有選擇修改方式。
goto end
:auto
netsh inte***ce ip set address name="本地連線" source=dhcp
netsh inte***ce ip delete dns "本地連線" all
ipconfig /flushdns
ipconfig /all
goto end
:home
echo 正在更改ip位址,請稍等......
netsh inte***ce ip set address name="本地連線" source=static addr=192.168.1.2 mask=255.255.255.0 gateway=192.168.1.1 gwmetric=1
netsh inte***ce ip set dns name="本地連線" source=static addr=210.122.70.68
netsh inte***ce ip add dns name="本地連線" addr=210.22.70.8 index=2
ipconfig /flushdns
ipconfig /all
echo 更改ip位址完成!
goto end
:company
echo 正在更改ip位址,請稍等......
netsh inte***ce ip set address name="本地連線" source=static addr=10.85.10.80 mask=255.255.255.0 gateway=10.85.10.253 gwmetric=1
netsh inte***ce ip set dns name="本地連線" source=static addr=210.114.1.12
netsh inte***ce ip add dns name="本地連線" addr=100.8.7.11 index=2
ipconfig /flushdns
ipconfig /all
goto end
:end
pause
修改Ip位址
臨時ip管理 ifconfig 網絡卡名 自己要設定的ip root fengjunhong fjh ifconfig ens33 192.168.1.120 重啟網路 centos7.x root fengjunhong fjh systemctl restart network centos6....
修改ip位址bat
echo off mode con cols 50 lines 20 title ip位址設定工具 color 3f clsecho.echo.echo ip位址切換程式 echo echo.echo 自動獲取動態ip,請按 0 echo.echo 手工設定的ip1,請按 1 echo.echo 手...
debian 修改ip位址
debian的ip位址資訊的檔案是儲存在 etc network inte ces,直接編輯該檔案就可以。可以看到檔案中的設定為動態ip的語句 iface eth0 inet dhcp 當然也可以設定為靜態ip位址,如 在 etc network inte ces 中,刪除 iface eth0 i...