我正在嘗試使用 Ubuntu 16.04 準備代理伺服器,我的伺服器具有以下網路卡:
enp4s0 Link encap:Ethernet HWaddr 00:15:c5:f6:c0:36
inet addr:192.168.0.101 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: fe80::215:c5ff:fef6:c036/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:5118 errors:0 dropped:0 overruns:0 frame:0
TX packets:3065 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:7474529 (7.4 MB) TX bytes:254689 (254.6 KB)
Interrupt:16
enp6s0 Link encap:Ethernet HWaddr 00:08:54:31:8f:79
inet addr:172.24.3.19 Bcast:172.24.3.255 Mask:255.255.252.0
inet6 addr: fe80::208:54ff:fe31:8f79/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:7573 errors:0 dropped:334 overruns:0 frame:0
TX packets:2756 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:756664 (756.6 KB) TX bytes:881724 (881.7 KB)
enp4s0 是 WAN 網路卡,連接到 Internet。 enp6s0 是 LAN 網路卡。
我按原樣配置它們/etc/network/interfaces
:
allow-hotplug enp4s0
iface enp4s0 inet dhcp
allow-hotplug enp6s0
iface enp6s0 inet static
address 172.24.3.19
netmask 255.255.252.0
gateway 172.24.0.1
dns-nameservers 172.24.3.1
enp4s0 收到的 ip 如下,摘自/var/lib/dhcp/dhclient.enp4s0.leases
:
lease {
interface "enp4s0";
fixed-address 192.168.0.101;
option subnet-mask 255.255.255.0;
option routers 192.168.0.1;
option dhcp-lease-time 7200;
option dhcp-message-type 5;
option domain-name-servers 192.168.0.1,8.8.8.8;
option dhcp-server-identifier 192.168.0.1;
renew 5 2018/06/08 16:03:17;
rebind 5 2018/06/08 16:59:19;
expire 5 2018/06/08 17:14:19;
}
下列的Nairbytes.net,我應用了一些 iptables 規則,如下所示:
iptables -t nat -A POSTROUTING -o enp4s0 -j MASQUERADE
iptables -A FORWARD -i enp4s0 -o enp6s0 -m state --state RELATED,ESTABLISHED -j ACCEPT
iptables -A FORWARD -i enp6s0 -o enp4s0 -j ACCEPT
於是iptables規則變成瞭如下:
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED
ACCEPT all -- anywhere anywhere
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
但我不明白的是為什麼兩個網卡同時只有一個工作正常。雖然該伺服器可以透過 enp6s0 與 LAN 通信,但無法連接到互聯網。
所以我將這條路線應用到它:
sudo /sbin/route add -net 0.0.0.0 gw 192.168.0.1 enp4s0
事情又恢復了!現在伺服器可以連接互聯網,但無法存取區域網路。
我原來的問題是嘗試設定網關,但這似乎是不可能的,因為enp6s0是LAN網卡,而且它連接到一個VLAN,更好地說,這個VLAN已經有一個網關(172.24.0.1)並且我想讓這個伺服器對所有其他子網路可見(不僅172.24.0.1,但我們還有其他 12 個子網路!它們全部連結到 172.24.0.0 網路遮罩)。
所以我決定提出一個代理,而不是網關。我安裝了魷魚,但在完成魷魚配置之前必須使連接正常工作。我的網路方案如下圖所示: 我究竟做錯了什麼?