Home > Article > Operation and Maintenance > How to set ip address in centos7
First open the ifcfg-eth0 file
# vim /etc/sysconfig/network-scripts/ifcfg-eth0
Then modify the following content
BOOTPROTO="static" #dhcp改为static ONBOOT="yes" #开机启用本配置 IPADDR=192.168.7.106 #静态IP GATEWAY=192.168.7.1 #默认网关 NETMASK=255.255.255.0 #子网掩码 DNS1=192.168.7.1 #DNS 配置
Finally restart the network service
# service network restart
Recommended tutorial: centos tutorial
The above is the detailed content of How to set ip address in centos7. For more information, please follow other related articles on the PHP Chinese website!