In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article is about how to modify the network IP settings under the CMD command line. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.
For a relatively simple version, you only need to know the ip and dns information that needs to be set.
@ echo.@echo-- @ echo this command will automatically fill in the following for "Local connection": @ echo IP address: 192.168.0.118@echo Gateway: 192.168.0.1@echo DNS: 202.96.128. 86@echo-@ echo. @ echo.@echo is not connected to the local area network. When booting, the system cannot find the IP address, so the speed of entering the system is a little slower. Enter the IP address (any) in the @ echo local connection to speed up the startup of the system. Therefore, this batch is only for users who dial @ echo on a stand-alone computer to access the Internet. Local area network users, please ignore this batch processing, improper changes may cause you not to be able to access the Internet. @ echo.@echo.@ pause@echo offnetsh interface ip set address name= "Local connection" source=static addr=192.168.0.118 mask=255.255.255.0 gateway=192.168.0.1 1netsh interface ip set dns name= "Local connection" source=static addr=202.96.128.86
Without repeating, there are two direct examples:
C:\ > ipconfig (first use the ipconfig command to see the ip address before the change) Windows 2000 IP Configuration Ethernet adapter Local connection: Connection-specific DNS Suffix. : IP Address. . . . . . . . . . . . 10.1.1.94 (ip before local connection changes) Subnet Mask. . . . . . . . . . . : 255.255.255.0 Default Gateway. . . . . . . . . : 10.1.1.254 C:\ > netsh (enter setup mode) netsh > interface interface > ip interface ip > set address "Local connection" static 10.1.1.111 255.255.255.0 10.1.254 interface ip > exit
The set command above is explained as follows:
Set address-sets the IP address and default gateway for the specified interface.
Set dns-sets the DNS server mode and address.
Set wins-sets the WINS server mode and address.
C:\ > ipconfig (after changing it, use the ipconfig command to check whether the change is successful) Windows 2000 IP Configuration Ethernet adapter Local connection: Connection-specific DNS Suffix. : IP Address. . . . . . . . . . . . : 10.1.1.111 Subnet Mask. . . . . . . . . . . : 255.255.255.0 Default Gateway. . . . . . . . . : 10.1.1.254
List of orders
.. -move to the upper context level.
?-displays a list of commands.
Aaaa-change to the `aaaa` context.
Abort-discards changes made in offline mode.
Add-adds a configuration item to the project list.
Alias-add an alias
Bye-exit the program.
Commit-commits changes made in offline mode.
Delete-removes a configuration item from the project list.
Dhcp-change to the `dhcp` context.
Dump-displays a configuration script.
Exec-run a script file.
Exit-exit the program.
Help-displays a list of commands.
Interface-change to the `interface` context.
Offline-sets the current mode to offline.
Online-sets the current mode to online.
Popd-opens a context from the stack.
Pushd-pushes the current context onto the stack.
Quit-exit the program.
Ras-change to the `ras` context.
Routing-change to the context of `routing`.
Set-updates the configuration settings.
Show-display information
Unalias-deletes an alias.
Wins-change to the `wins` context.
1. Automatically modify the network address:
@ echo off netsh interface ip set address name= "Local connection" static 192.168.1.55 255.255.255.192.168.1.1 auto > nul netsh interface ip add dns "Local connection" 202.98.96.68 index=1 > nul netsh interface ip add dns "Local connection" 61.139.2.69 index=2 > nul netsh interface ip set address name= "Local connection 2" static 192.168.1.55 255.255.255.0 192.168.1.1 auto > nul netsh interface ip add Dns "Local connection 2" 202.98.96.68 index=1 > nul netsh interface ip add dns "Local connection 2" 61.139.2.69 index=2 > nul netsh interface ip set address name= "Local connection 3" static 192.168.1.55 255.255.255.0 192.168.1.1 auto > nul netsh interface ip add dns "Local connection 3" 202.98.96.68 index=1 > nul netsh interface ip add dns "Local connection 3" 61.139.2.69 index=2 > nul echo IP address has been set and modified Press any key to close this window pause > nul
2. Modify the IP address interactively
@ echo off cls color 0A echo IP address change gadget set IP=192.168.1.1 set MASK=255.255.255.0 set GATEWAY=192.168.1.0 set NAME= Local connection echo. For echo to change IP automatically, press 1 echo. Echo manually change IP press 2 set / p KEY= [your choice is] if% KEY% = = 1 goto ONE if% KEY% = = 2 goto TWO: TWO ECHO you chose to modify the settings manually. ECHO. Echo default IP address is% IP%, enter default address set / p IP= [please enter IP address:] echo. Echo default MASK is% MASK%, enter default set / p MASK= [please enter subnet mask address:] echo. Echo default GATEWAY is% GATEWAY%, enter default set / p GATEWAY= [please enter gateway address:] echo. ONE echo is automatically changing IP. Netsh interface ip set address NAME% static IP% MASK% GATEWAY% echo IP address / subnet mask / gateway setup completed pause
Tips:
1. The first reason is to write the local connection 2 the local connection 3, because some machines will change the network card or change the driver so that the connection name is the local connection.
2, in the XP system and WIN7 system, the modification will be a little different, the first example listed above is an auto, applicable to XP, but WIN7 can not be auto.
Thank you for reading! This is the end of this article on "how to modify network IP settings under the CMD command line". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it out for more people to see!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.