Home > System Tutorial > LINUX > body text

How to add IP address in CentOS

WBOY
Release: 2024-01-05 20:37:43
forward
950 people have browsed it

Generally we can add a new IP to the eth0 network card

cd /etc/sysconfig/network-scripts/
cp ifcfg-eth0 ifcfg-eth0:1
vim ifcfg-eth0:1
DEVICE=eth0:1 # 修改网卡名称
HWADDR=29:61:16:5B:29:7C
TYPE=Ethernet
UUID=bf14538c-a6cf-4fd3-b459-e4db69437c2e
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=static
IPADDR=192.168.1.203
NETMASK=255.255.255.192
GATEWAY=xxx.xxx.xx.xxx
DNS1=8.8.8.8
Copy after login

Save and exit and then start the network card:

ifup eth0:1
Copy after login

Then you can use the ip addr command to check whether the addition is successful
Bonus: Delete the specified ip on the network card

ip addr del 192.168.0.1 dev eth0 # 删除网卡的第二个IP地址
Copy after login

The above is the detailed content of How to add IP address in CentOS. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:jb51.net
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!