Ubuntu重启⽹卡的三种⽅法
⼀、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
---------------------
ubuntu网络配置作者:marc07
来源:CSDN
原⽂:blog.csdn/marc07/article/details/62885872
版权声明:本⽂为博主原创⽂章,转载请附上博⽂链接!

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。