我正在關注本教程設定 VPN。一切都很順利,直到我遇到了步驟#8伺服器端設定:
8. 最後,如果您希望客戶端之間能夠相互通信,則必須新增以下規則。 # iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE && iptables-save 在上述規則中,您必須將“eth0”替換為伺服器使用的網際網路連線。您可以使用指令 iwconfig 和 ifconfig 來解決這個問題。 # iptables --table nat --append POSTROUTING --out-interface ppp0 -j # iptables -I 輸入 -s 172.20.0.0/20 -i ppp0 -j 接受 # iptables --append FORWARD --in-interface eth0 -j ACCEPT 上述規則還要求您使用正確的互聯網連接,就像第一條規則一樣。
上面的文字更容易閱讀這一頁。 (之前已經參考過)。我不確定“用互聯網替換 eth0...”部分是什麼意思。我使用ifconfig
andiwconfig
得到了以下結果:
-----IFCONFIG-----
lo Link encap:Bucle local
Direc. inet:127.0.0.1 Másc:255.0.0.0
Dirección inet6: ::1/128 Alcance:Anfitrión
ACTIVO BUCLE FUNCIONANDO MTU:65536 Métrica:1
Paquetes RX:22955 errores:0 perdidos:0 overruns:0 frame:0
Paquetes TX:22955 errores:0 perdidos:0 overruns:0 carrier:0
colisiones:0 long.colaTX:1
Bytes RX:2426706 (2.4 MB) TX bytes:2426706 (2.4 MB)
wlp2s0 Link encap:Ethernet direcciónHW d0:53:49:20:28:5c
Direc. inet:192.168.1.34 Difus.:192.168.1.255 Másc:255.255.255.0
Dirección inet6: fe80::ce80:2746:f707:ad1c/64 Alcance:Enlace
ACTIVO DIFUSIÓN FUNCIONANDO MULTICAST MTU:1500 Métrica:1
Paquetes RX:3756393 errores:0 perdidos:0 overruns:0 frame:0
Paquetes TX:2189595 errores:0 perdidos:0 overruns:0 carrier:0
colisiones:0 long.colaTX:1000
Bytes RX:4710198766 (4.7 GB) TX bytes:343761733 (343.7 MB)
-----IWCONFIG----
wlp2s0 IEEE 802.11 ESSID:"MOVISTAR_FF04"
Mode:Managed Frequency:2.447 GHz Access Point: F8:8E:85:FD:FF:59
Bit Rate=65 Mb/s Tx-Power=16 dBm
Retry short limit:7 RTS thr:off Fragment thr:off
Power Management:off
Link Quality=65/70 Signal level=-45 dBm
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:34 Invalid misc:2298 Missed beacon:0
lo no wireless extensions.
我想確定我在做什麼,不要犯任何錯誤,特別是因為我不知道我是否會在過程中毀掉我的電腦和rooter,或者更糟的C:。所以,
- 這個教學是可行的方法嗎?是或否就足夠了。
- 有人可以告訴我該用什麼代替嗎“eth0”在第一條規則中?
我有一個Ubuntu LTS 16.0464 位元發行版。先致謝!