Ubuntu服务器附加networking接口已停止响应

我有一台运行在HyperV主机上的Ubuntu 16.04服务器。

那里有几个网站 – 有些使用SSL,有些则不是。

所以我添加了一个额外的网卡给HyperV,并在/ etc / network / interfaces中添加了一个额外的接口

所以我有10.0.6.16作为主界面 – 这也承载了SSL网站和10.0.6.17的非SSL网站托pipe的额外接口。 在边缘防火墙级别,每个接口都被分配到不同的外部IP地址

这一直工作好几个月 – 现在我今天下午重新启动Ubuntu服务器(没有更新安装afaik),现在10.0.6.17已停止响应,非SSL网站全部closures。

输出ls / sys / class / net

enp0s10f0 eth0 lo 

输出ifconfig:

 enp0s10f0 Link encap:Ethernet HWaddr 00:15:5d:b3:0b:11 inet addr:10.0.6.17 Bcast:10.0.6.255 Mask:255.255.255.0 inet6 addr: fe80::215:5dff:feb3:b11/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:126 errors:0 dropped:0 overruns:0 frame:0 TX packets:8 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:20804 (20.8 KB) TX bytes:648 (648.0 B) eth0 Link encap:Ethernet HWaddr 00:15:5d:b3:0b:0d inet addr:10.0.6.16 Bcast:10.0.6.255 Mask:255.255.255.0 inet6 addr: fe80::215:5dff:feb3:b0d/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:2899 errors:0 dropped:0 overruns:0 frame:0 TX packets:1554 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:351754 (351.7 KB) TX bytes:2604350 (2.6 MB) lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:65536 Metric:1 RX packets:176 errors:0 dropped:0 overruns:0 frame:0 TX packets:176 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1 RX bytes:12982 (12.9 KB) TX bytes:12982 (12.9 KB) 

/ etc / network / interfaces的输出

 # The loopback network interface auto lo iface lo inet loopback # The primary network interface and for HTTPS websites auto eth0 iface eth0 inet static address 10.0.6.16 netmask 255.255.255.0 network 10.0.6.0 broadcast 10.0.6.255 gateway 10.0.6.1 # dns-* options are implemented by the resolvconf package, if installed dns-nameservers 10.0.6.100 dns-search local # Secondary network interface for non HTTPS websites auto enp0s10f0 iface enp0s10f0 inet static address 10.0.6.17 netmask 255.255.255.0 

IP链接显示的输出

 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 2: enp0s10f0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN mode DEFAULT group default qlen 1000 link/ether 00:15:5d:b3:0b:11 brd ff:ff:ff:ff:ff:ff 3: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DEFAULT group default qlen 1000 link/ether 00:15:5d:b3:0b:0d brd ff:ff:ff:ff:ff:ff 

从虚拟机本身我可以ping 6.16和6.17作为id期望。

从HyperV主机服务器我可以ping 16和17

从同一本地networking上的任何机器,我可以ping 16和17

UFW启用/禁用没有区别。 没有其他防火墙在使用。

所以我没有任何网站在10.0.6.17的时候回应,我勉强我的有限的Linux知识,找出原因。

任何人都能给我一些指点和帮助吗?

亲切的问候