Connesso a VPN ma non può connettersi a Internet


2

Sto usando Ubuntu 12.10 come un vps. E sto cercando di configurare un server vps su di esso. Posso collegarmi alla VPN ma non riesco ad accedere a Internet. Forse perché non so come scrivere un iptables.

ifconfig eth0
inet addr:162.251.120.98  Bcast:162.251.120.127  Mask:255.255.255.224

Per favore qualcuno scriva una regola di iptables funzionante per me. Grazie.

Risposte:


0

Prova quelle regole:

iptables -I INPUT -p 47 -m state --state ESTABLISHED -j ACCEPT

iptables -I OUTPUT -p 47 -m state --state NEW,ESTABLISHED -j ACCEPT

iptables -I INPUT -p tcp --sport 1723 -m state --state ESTABLISHED -j ACCEPT

iptables -I OUTPUT -p tcp --dport 1723 -m state --state NEW,ESTABLISHED -j ACCEPT
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.