windows系統采用批處理命令修改ip地址
阿新 • • 發佈:2019-03-19
level 獲取ip res png windows系統 rem 內網 inf ...
windows系統采用批處理命令修改ip地址
:: 設置IP地址 set /p choice=請選擇設置類型(1:外網IP / 2:內網IP / 3:自動獲取IP): echo. if "%choice%"=="1" goto ip1 if "%choice%"=="2" goto ip2 if "%choice%"=="3" goto ip3 goto main :ip1 echo 外網IP自動設置開始... echo. echo 正在設置外網IP及子網掩碼 cmd /c netsh interface ip set address name="以太網" source=static addr=ip地址 mask=子網掩碼 gateway=默認網關 gwmetric=1 echo 正在設置外網DNS服務器 cmd /c netsh interface ip add dnsservers name="以太網" address=DNS index=1 cmd /c netsh interface ip add dnsservers name="以太網" address=DNS index=2 echo 外網IP設置完成 pause exit if errorlevel 2 goto main if errorlevel 1 goto end :ip2 echo 內網IP自動設置開始... echo. echo 正在設置內網IP及子網掩碼 cmd /c netsh interface ip set address name="以太網" source=static addr=ip地址 mask=子網掩碼 gateway=默認網關 gwmetric=1 echo 正在設置內網DNS服務器 cmd /c netsh interface ip add dnsservers name="以太網" address=DNS index=1 cmd /c netsh interface ip add dnsservers name="以太網" address=DNS index=2 echo 內網IP設置完成 pause exit if errorlevel 2 goto main if errorlevel 1 goto end :ip3 echo IP自動設置開始.... echo. echo 自動獲取IP地址.... netsh interface ip set address name = "以太網" source = dhcp echo 自動獲取DNS服務器.... netsh interface ip set dns name = "以太網" source = dhcp @rem 設置自動獲取IP echo 設置完成 pause exit if errorlevel 2 goto main if errorlevel 1 goto end :end
windows系統采用批處理命令修改ip地址