How To Change Ip In Linux Command Line?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
1. Navigate to the network configuration directory:
cd /etc/sysconfig/network-scripts/
2. Find the interface name:
ip addr
3. Edit the configuration file for the interface:
sudo nano ifcfg-<interface>
4. Change the IP address:
BOOTPROTO=static
IPADDR=<new_ip_address>
5. Save and close the file:
Ctrl + O, Enter, Ctrl + X
6. Restart the network service:
sudo service network restart