码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu重启网卡的三种方法

时间:2020-07-28 10:04:39      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:pst   div   ups   res   fail   错误日志   ice   错误   网卡   

 
一、network
利用root帐户
# service network restart
或者/etc/init.d/networking restart

二、ifdown/ifup
# ifdown eth0
# ifup eth0

三、ifconfig
# ifconfig eth0 down
# ifconfig eth0 up
 
Ubuntu14.04修改配置,重启网卡没有生效,出现如下问题:
service  networking restart //重启网络服务
stop: Job failed while stopping
start: Job is already running: networking
tail -f /var/log/upstart/networking.log //查看错误日志
Stopping or restarting the networking job is notsupported.
Use ifdown & ifup to reconfigure desired interface.

从以上日志内容可以看出,传统的service重启和停止网络已经不再支持了,需要通过使用ifdown &ifup来实现相应的操作。

重启指定网卡
ifdown eth0 && ifup eth0
--------------------- 
作者:marc07 
来源:CSDN 
原文:https://blog.csdn.net/marc07/article/details/62885872 
版权声明:本文为博主原创文章,转载请附上博文链接!

Ubuntu重启网卡的三种方法

标签:pst   div   ups   res   fail   错误日志   ice   错误   网卡   

原文地址:https://www.cnblogs.com/Python-K8S/p/13389082.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!