临时IP管理
1、修改临时IP地址:
# ifconfig 网卡名 自己要设置的IP
[root@fengjunhong fjh]# ifconfig ens33 192.168.1.120
#---------------------重启网络-----------------------------------
#centos7.x
[root@fengjunhong fjh]# systemctl restart network
#centos6.x
[root@fengjunhong fjh]# service network restart
#---------------------重启网络-----------------------------------
2、添加多个临时IP地址:
#第一条IP
[root@fengjunhong fjh]# ifconfig ens33:0 192.168.1.110
#第二条IP
[root@fengjunhong fjh]# ifconfig ens33:1 192.168.2.110
3、删除临时IP地址:
# ifconfig 网卡名 del IP地址
[root@fengjunhong fjh]# ifconfig ens33:0 del 192.168.2.110
永久IP管理
1、使用nmtui命令
[fjh@fengjunhong ~]$ nmtui
步骤:"编辑连接"→ "编辑 "→ "IPV4配置"
配置好IP之后,重置网络
[root@fengjunhong fjh]# systemctl restart network
2、通过修改网卡配置文件改IP地址
[root@fengjunhong fjh]# vim /etc/sysconfig/network-scripts/ifcfg-ens33