Home  >  Article  >  Operation and Maintenance  >  How to set ip address in centos7

How to set ip address in centos7

王林
王林Original
2020-05-23 15:04:454214browse

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn