Ubuntu 16.04 上的传出连接问题

Ubuntu 16.04 上的传出连接问题

我们有Ubuntu 16.04.3跑动OpenVZ

一段时间后,该服务器停止发送邮件。
问题不在于发送邮件的应用程序(在另一台机器上一切正常)。

同时,我注意到该应用程序停止与其他第三方服务(REST API)协同工作。

我尝试执行:wget __SOME_HOST___
...但什么也没发生!
failed: Connection timed out.

所有传入连接工作正常(ssh、nginx、mysql 等)。

我试图了解发生了什么,并注意到此时网络接口的配置发生了变化。

/etc/network/interfaces

# Auto generated lo interface
auto lo
iface lo inet loopback

# Auto generated venet0 interface
auto venet0
iface venet0 inet manual
        up ifconfig venet0 up
        up ifconfig venet0 127.0.0.2
        up route add default dev venet0
        down route del default dev venet0
        down ifconfig venet0 down


iface venet0 inet6 manual
        up ifconfig venet0 add 2a00:f940:2:1:2::1a7c/65
        down ifconfig venet0 del 2a00:f940:2:1:2::1a7c/65
        up route -A inet6 add default dev venet0
        down route -A inet6 del default dev venet0

auto venet0:0
iface venet0:0 inet static
        address xxx.xx.xxx.xxx
        netmask 255.255.255.255

> ifconfig

输出:

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:5934353 errors:0 dropped:0 overruns:0 frame:0
          TX packets:5934353 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:1764429418 (1.7 GB)  TX bytes:1764429418 (1.7 GB)

venet0    Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00  
          inet addr:127.0.0.2  P-t-P:127.0.0.2  Bcast:0.0.0.0  Mask:255.255.255.255
          inet6 addr: 2a00:f940:2:1:2::1a7c/65 Scope:Global
          UP BROADCAST POINTOPOINT RUNNING NOARP  MTU:1500  Metric:1
          RX packets:12466713 errors:0 dropped:0 overruns:0 frame:0
          TX packets:23511846 errors:0 dropped:1 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:1305628952 (1.3 GB)  TX bytes:25217918312 (25.2 GB)

venet0:0  Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00  
          inet addr:xxx.xx.xxx.xxx  P-t-P:xxx.xx.xxx.xxx  Bcast:xxx.xx.xxx.xxx  Mask:255.255.255.255
          UP BROADCAST POINTOPOINT RUNNING NOARP  MTU:1500  Metric:1

有人有什么主意吗?

更新型多巴胺

cat /proc/sys/net/ipv4/ip_forward
OUTPUT:
1

相关内容