2021-05-12 14:32:11
Linux基礎教學學習筆記之修改網路設定
2020-06-16 17:29:44
RHEL7中修改網路設定:
systemctl status NetworkManager
可使用startx 啟動圖形介面, 對網路設定有兩種方法:
1,新增一套配設定方案
2,修改原有設定方案
具體步驟:
nmcli device show
nmcli connection show
nmcli connection "system0"
nmcli connection show --active
2. 增加一套設定
nmcli connection add con-name "dhcp-eth0" type ethernet ifname eth0
nmcli connection add con-name "static-eth0" type ethernet ifname eth0 autoconnect ip4
10.10.10.1/24 gw4 10.10.10.254
nmcli conn down "system eth0"
nmcli conn up "static-eth0"
nmcli conn sh --active
nmcli conn sh "system eth0" | grep -i autoconnect
nmcli conn delete dhcp-eth0/static-eth0
3. 修改DNS
nmcli conn modify "new" ipv4.dns 172.25.254.254
hostnamectl set-hostname server1.example.com
本文永久更新連結地址:http://www.linuxidc.com/Linux/2016-11/136705.htm
相關文章