Loading

centos 8 如何重启网络 service network restart / systemctl restart network 失效的解决办法

systemctl restart network centos8失效了
重启网络可使用以下命令

#重启整个网络
nmcli n off && nmcli n on 
#重启指定网卡
nmcli c down eth0 && nmcli c up eth0 
ifdown eth0 && ifup eth0

注意一定要使用&&一起执行,否则关闭网络后,会无法远程连接到服务器
ifdown / ifup本质为调用nmcli的脚本

ps:
你可以通过图形化工具来设置网络

nmtui

参考:
https://www.centos.org/forums/viewtopic.php?p=302319
https://access.redhat.com/discussions/3791081
https://www.osetc.com/en/how-to-start-stop-restart-network-service-on-centos-8-or-rhel-8.html
https://www.tecmint.com/set-static-ip-address-in-rhel-8/
https://www.tecmint.com/configure-network-connections-using-nmcli-tool-in-linux/
https://www.certdepot.net/rhel7-configure-ipv4-addresses/

posted @ 2019-10-24 00:02  wswind  阅读(16404)  评论(0编辑  收藏  举报