第一章 管理网络
查看网络信息
显示网卡状态# nmcli dev status列出所有连接# nmcli con show只列出可用连接# nmcli con show --active显示网卡配置信息# ip addr show eth0
添加网络连接
# nmcli con add con-name eno2 type ethernet ifname eno2 # nmcli con add con-name eno2 type ethernet ifname eno2 ipv4 192.168.0.5/24 gw4 192.168.0.254
控制网络连接
激活连接 # nmcli con up static-eth0 禁用网卡 # nmcli dev dis eth0
查看连接设置
# nmcli con show static-eth0
修改网络连接设置
# nmcli con mod static-eth0 ipv4.addresses "192.0.2.2/24 192.0.2.254"# nmcli con mod static-eth0 +ipv4.dns 192.0.2.1
删除一个网络连接
# nmcli con del static-eth0
修改主机名
显示主机全名, -s选项显示短主机名 # hostname 设置主机名 # hostnamectl set-hostname demo.example.com 查看主机名状态 # hostnamectl status 静态主机名存储在/etc/hostname,之前版本存储在/etc/sysconfig/network # cat /etc/hostname
时间: 2024-10-23 21:05:45