Linux CentOS7 云计算高级运维第一阶段1

CentOS7 网络管理

配置IP:

       临时配置:ifconfig ens33 192.168.100.100 netmask 255.255.255.0

       永久配置:vim /etc/sysconfig/network-scripts/ifcfg-ens33

       临时添加IP:ifconfig ens33:0 192.168.100.100 netmask 255.255.255.0

       删除临时添加的IP:ifconfig ens33:0 del 192.168.100.100

       CentOS 8修改网卡配置:nmcli connection modify ens160 ipv4.addresses 192.168.100.100/24 ipv4.method manual ipv4.gateway 192.168.100.1 ipv4.dns 8.8.8.8

       CentOS 8关闭网卡:nmcli connection down ens160

       CentOS 8开启网卡:nmcli connection up ens160

重新启动网卡:

       systemctl restart network

       service network restart

       ifdown ens33 && ifup ens33

查看网络状态:

       systemctl status NetworkManager

host:

       永久修改主机名:vim /etc/hostname

       临时配置主机名:hostnamectl set-hostname XXX

       配置host文件:vim /etc/hosts


 

Linux CentOS7 云计算高级运维第一阶段1Linux CentOS7 云计算高级运维第一阶段1 马尔盖云 发布了40 篇原创文章 · 获赞 52 · 访问量 1万+ 私信 关注
上一篇:Linux网络配置


下一篇:Centos虚拟机修改为固定IP