How to set ip in centos

Release: 2020-04-01 14:20:30
Original
6880 people have browsed it

How to set ip in centos

How to set IP in centos:

Before configuring the network, we must first know what the network card name of centos is. Centos7 no longer uses the ifconfig command. You can use the command IP addr view.

How to set ip in centos

1. Obtain IP dynamically (provided that your router has enabled DHCP)

Modify the network card configuration file vi /etc/sysconfig/network-scripts /ifcfg-ens32 (The last one is the network card name)

You need to modify two places to dynamically obtain the IP address

(1)bootproto=dhcp

(2)onboot =yes

How to set ip in centos

After modification, restart the network service. systemctl restart network

[root@mini ~]# systemctl restart network
Copy after login
Copy after login

2. Configure static IP address

Set static IP The address is similar to the dynamic iIP. You also need to modify the network card configuration file vi /etc/sysconfig/network-scripts/ifcfg-ens32 (the last one is the network card name)

(1) bootproto=static

(2) onboot=yes

(3) Add a few lines at the end, IP address, subnet mask, gateway, dns server

IPADDR=192.168.1.160
NETMASK=255.255.255.0
GATEWAY=192.168.1.1
DNS1=119.29.29.29
DNS2=8.8.8.8
Copy after login

(4) Restart the network service

[root@mini ~]# systemctl restart network
Copy after login
Copy after login

Recommended tutorial: centos tutorial

The above is the detailed content of How to set ip in centos. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template