如何在不通过 SSH 重启的情况下成功重启网络?

Sim*_*een 100 network-manager networking services

在Ubuntu 14.04没有sudo service networking restart,也没有sudo /etc/init.d/networking restart任何更多的做任何事情。他们也都以代码 1 退出。显然有些事情发生了变化(或发生了一半变化),但我找不到什么。这显然会导致远程网络重新配置和 Ansible 等工具出现问题。

$ sudo bash -x /usr/sbin/service networking restart
[sudo] password for wirehive:
++ basename /usr/sbin/service
+ VERSION='service ver. 0.91-ubuntu1'
++ basename /usr/sbin/service
+ USAGE='Usage: service < option > | --status-all | [ service_name [ command | --full-restart ] ]'
+ SERVICE=
+ ACTION=
+ SERVICEDIR=/etc/init.d
+ OPTIONS=
+ '[' 2 -eq 0 ']'
+ cd /
+ '[' 2 -gt 0 ']'
+ case "${1}" in
+ '[' -z '' -a 2 -eq 1 -a networking = --status-all ']'
+ '[' 2 -eq 2 -a restart = --full-restart ']'
+ '[' -z '' ']'
+ SERVICE=networking
+ shift
+ '[' 1 -gt 0 ']'
+ case "${1}" in
+ '[' -z networking -a 1 -eq 1 -a restart = --status-all ']'
+ '[' 1 -eq 2 -a '' = --full-restart ']'
+ '[' -z networking ']'
+ '[' -z '' ']'
+ ACTION=restart
+ shift
+ '[' 0 -gt 0 ']'
+ '[' -r /etc/init/networking.conf ']'
+ which initctl
+ grep -q upstart
+ initctl version
+ case "${ACTION}" in
+ stop networking
stop: Job failed while stopping
+ :
+ exec start networking
start: Job is already running: networking
Run Code Online (Sandbox Code Playgroud)

在 Ubuntu 14.04 Server 中远程重启网络的正确方法是什么?

Sim*_*een 126

原来这是一个“功能”。在 Ubuntu Server 中重新启动界面的唯一支持的方法是sudo ifdown eth0 && sudo ifup eth0

https://bugs.launchpad.net/ubuntu/+source/ifupdown/+bug/1301015

  • 如果您不是以 root 身份运行此命令,请确保您运行 'sudo ifdown eth0 &amp;&amp; **sudo** ifup eth0'(注意第二个 sudo) (9认同)
  • 使用 `;` 代替 `&amp;&amp;` 不是更安全的选择吗? (5认同)
  • 如果通过 ssh 连接可以这样做吗?即,两个命令都会在断开连接之前运行吗? (4认同)
  • 就我而言,运行“sudo service network restart”似乎把事情搞砸了。所以我不得不运行 `sudo ifdown eth0 &amp;&amp; sudo ifup eth0` 两次。是的,两次。 (2认同)

dpb*_*dpb 73

ifdown, ifup 对我不起作用(可能是第二个命令之前的 SSH 连接超时)。有效的是:

sudo service network-manager restart
Run Code Online (Sandbox Code Playgroud)

这是在 14.04 ubuntu-desktop 系统上。

  • 接受的答案对我不起作用;这个做到了。(全新安装 14.04.1) (4认同)
  • 接受的答案适用于 Ubuntu 12.04 及更低版本。这个答案对于 14.04 是可以接受的。 (4认同)
  • 在我的 14.04.2 上,此服务不存在 - sudo service network-manager restart。 (4认同)
  • “ifdown/ifup”答案在 Ubuntu 14.04 上对我也不起作用,但确实如此。 (3认同)
  • 可以确认这在 Trusty (Ubuntu 14.04) 上对我有用。 (2认同)

kvm*_*420 6

改变的是他们不再希望你“弹跳”网络。停止和启动,仍然有效。重新启动不再有效。我只是“解决”了这个“问题”,也就是说我恢复了旧的行为。恢复到之前的行为:获取 13.10 /etc/init/networking.conf 文件并用它替换 14.04 文件。(编辑:澄清哪个取代了哪个)

该过程如下所示:

(Just before this, I configured my /etc/network/interfaces for eth1 on a 192.168.117.x address)

"/etc/network/interfaces" 16L, 413C written  
root@1404-Anode:~# service networking restart  
stop: Job failed while stopping  
start: Job is already running: networking  
root@1404-Anode:~# echo "hmm, wth?"
hmm, wth?
root@1404-Anode:~# ifconfig  
eth0      Link encap:Ethernet  HWaddr 00:0c:29:d6:a8:19  
          inet addr:192.168.115.105  Bcast:192.168.115.255  Mask:255.255.255.0  
          inet6 addr: 2002:4077:9050:1234:a08c:29c1:ce9b:a57b/64 Scope:Global  
          inet6 addr: fe80::20c:29ff:fed6:a819/64 Scope:Link  
          inet6 addr: 2002:4077:9050:1234:20c:29ff:fed6:a819/64 Scope:Global  
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1  
          RX packets:646 errors:0 dropped:0 overruns:0 frame:0  
          TX packets:531 errors:0 dropped:0 overruns:0 carrier:0  
          collisions:0 txqueuelen:1000  
          RX bytes:58748 (58.7 KB)  TX bytes:75465 (75.4 KB)  
(lo removed here)  
root@1404-Anode:~# cd /etc/init
root@1404-Anode:/etc/init# diff networking.conf.1310 networking.conf.1404  
13c13  
<       and (stopped udevtrigger or container)) or runlevel [2345]  
---  
>     and (stopped udevtrigger or container)) or runlevel [2345] or stopped  networking   >RESULT=failed PROCESS=post-stop EXIT_STATUS=100  
16a17,20  
>     if [ "$UPSTART_EVENTS" = "stopped" ] && [ "$UPSTART_JOB" = "networking" ] && [ "$EXIT_STATUS" = "100" ]; then  
>         exit 0  
>     fi  
>  
21a26,31  
>     if [ -z "$UPSTART_STOP_EVENTS" ]; then  
>        echo "Stopping or restarting the networking job is not supported."  
>         echo "Use ifdown & ifup to reconfigure desired interface."  
>         exit 100  
>     fi  
root@1404-Anode:/etc/init#  
Run Code Online (Sandbox Code Playgroud)

对 /etc/init.d/networking 脚本执行相同的操作,这是 /etc/init/networking.conf 文件引用/调用的内容。

root@1404-Anode:/etc/init# cp networking.conf.1310 networking.conf  
root@1404-Anode:/etc/init# cd ../init.d  
root@1404-Anode:/etc/init.d# diff networking.1404 networking.1310  
15d14  
< STATEDIR="$RUN_DIR/state"
21a21,27
> # Make sure that it's clear to the user that they shouldn't use this
> # script under upstart
> if init_is_upstart; then
>       echo "ERROR: Calling a sysvinit script on a system using upstart isn't supported. Please use the 'service' command instead."  
>       exit 1
> fi
>
52,54d57
<       if ! chown root:netdev "$RUN_DIR" ; then
<           log_warning_msg "can't chown $RUN_DIR"
<       fi
160,162d162
<       if init_is_upstart; then
<               exit 1
<       fi
166c166
<       state=$(ifquery --state)
---
>       state=$(cat /run/network/ifstate)
root@1404-Anode:/etc/init.d# cp networking.1310 networking
root@1404-Anode:/etc/init.d# service networking restart
networking stop/waiting
networking start/running
root@1404-Anode:/etc/init.d# ifconfig
eth0      Link encap:Ethernet  HWaddr 00:0c:29:d6:a8:19
          inet addr:192.168.115.105  Bcast:192.168.115.255  Mask:255.255.255.0
          inet6 addr: 2002:4077:9050:1234:a08c:29c1:ce9b:a57b/64 Scope:Global
          inet6 addr: fe80::20c:29ff:fed6:a819/64 Scope:Link
          inet6 addr: 2002:4077:9050:1234:20c:29ff:fed6:a819/64 Scope:Global
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:3398 errors:0 dropped:0 overruns:0 frame:0
          TX packets:2545 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:318654 (318.6 KB)  TX bytes:418804 (418.8 KB)

eth1      Link encap:Ethernet  HWaddr 00:0c:29:d6:a8:23
          inet addr:192.168.117.105  Bcast:192.168.117.255  Mask:255.255.255.0
          inet6 addr: fe80::20c:29ff:fed6:a823/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:98 errors:0 dropped:58 overruns:0 frame:0
          TX packets:15 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:20055 (20.0 KB)  TX bytes:1226 (1.2 KB)
(lo removed)
root@1404-Anode:/etc/init.d# echo "hah, it works! *8^)"
Hah, it works! *8^)
root@1404-Anode:/etc/init.d#

(note: the steps where I scp'd the 1310 versions into the 1404 system are omitted for brevity). 
Run Code Online (Sandbox Code Playgroud)

显然,他们在那里设置防守出口是有原因的,但他们并不费心去真正输出正在发生的事情。

当您尝试时,条目确实会进入 /var/log/upstart/networking.log,如下所示:

Stopping or restarting the networking job is not supported.  
Use ifdown & ifup to reconfigure desired interface.  
Run Code Online (Sandbox Code Playgroud)

但是当您尝试重新启动服务网络时,他们确实可以/应该将其输出为对话框消息。呃,好吧。想通了,甚至是一种老方法。

编辑:我发现这会导致无意触发由 /etc/init/failsafe.conf 控制的脚本,这是不可取的,因为它会在每次启动时导致 120 秒的超时延迟......以及可能掩盖实际的错误配置/网络这种延迟的出现表明的问题,但它已经一直在显示。(例如,一根未插入的电缆,它允许访问映射在 /etc/fstab 中的网络文件共享,例如)

在任何情况下,我都会找出导致这总是超时的原因,并在找到时发布修复程序。

  • 修改核心操作系统行为的智慧值得商榷。 (5认同)