系统相关
首页 > 系统相关> > Linux CentOS7 云计算高级运维第一阶段1

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


 

马尔盖云 发布了40 篇原创文章 · 获赞 52 · 访问量 1万+ 私信 关注

标签:网卡,运维,100.100,192.168,ifconfig,CentOS7,ipv4,Linux,ens33
来源: https://blog.csdn.net/maergaiyun/article/details/103926399