複数の NIC、複数のゲートウェイ (パブリックとプライベート)

複数の NIC、複数のゲートウェイ (パブリックとプライベート)

何度も投稿されている質問を再度質問することについて、あらかじめお詫び申し上げます。以前のガイドに従おうとしましたが、かなり行き詰まっているようです。Ubuntu 16.04 を実行しており、パブリック ネットワーク (192.99.110.188) とプライベート ネットワーク (10.16.110.188) があります。ユーザーはプライベート ネットワークからアクセスできる必要がありますが、パブリック ネットワークは、更新と crashplan へのバックアップの実行に必要です。

/etc/network/interfaces ファイルの内容は次のとおりです。

auto eth0
allow-hotplug eth0
iface eth0 inet static
       address 192.99.110.188
       netmask 255.255.255.192
       broadcast 192.99.110.191
       gateway 192.99.110.129
       dns-nameservers 192.99.203.20 192.99.25.14

auto eth1
allow-hotplug eth1
iface eth1 inet static
       address 10.16.110.188
       netmask 255.255.255.192
       post-up ip route add 10.16.0.0/24 dev eth1 src 10.16.110.188 table rt2
       post-up ip route add default 10.16.110.188 via 10.16.110.129 dev eth1 table rt2
       post-up ip rule add from 10.16.110.188/32 table rt2
       post-up ip rule add to 10.16.110.188/32 table rt2 

ルーティング テーブル (route -n) は次のようになります。

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         137.99.110.129  0.0.0.0         UG    0      0        0 eth0
10.16.110.128   0.0.0.0         255.255.255.192 U     0      0        0 eth1
192.99.110.128  0.0.0.0         255.255.255.192 U     0      0        0 eth0
169.254.0.0     0.0.0.0         255.255.0.0     U     1000   0        0 eth0

しばらくセットアップをいじっていましたが、安全のため、プライベート ネットワークのみで実行しています (ユーザーがアクセスできるようにするため)。その後、パブリック インターフェイス (eth0) を有効にすると、システムは数時間は動作するように見えますが、その後、プライベート インターフェイスが応答しなくなり、ユーザーからの怒りのメールが届きます。

ご協力いただければ幸いです。

関連情報