Ubuntu rodando como um roteador bloqueia VPN

0

Eu tenho um servidor Ubuntu 16.01 rodando como meu roteador, eu segui este tutorial: link

tudo funciona bem, toda máquina recebe um IP, eu tenho conexão com a internet e até mesmo jogo on-line eu tenho zero lag,

mas agora que quero me conectar à VPN do meu trabalho, recebi este erro:

uma conexão com o computador remoto não pôde ser estabelecida, então as portas usadas para essa conexão foram fechadas.

como devo abrir as portas para a VPN? : (

qual regra estou faltando no meu iptables?

~$ sudo iptables -L
Chain INPUT (policy DROP)
target     prot opt source               destination
ACCEPT     all  --  anywhere             anywhere
ACCEPT     all  --  anywhere             anywhere
ACCEPT     all  --  anywhere             anywhere             state RELATED,ESTABLISHED
Logging    all  --  anywhere             anywhere

Chain FORWARD (policy DROP)
target     prot opt source               destination
ACCEPT     all  --  anywhere             anywhere
ACCEPT     all  --  anywhere             anywhere             state RELATED,ESTABLISHED

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination

Chain Logging (1 references)
target     prot opt source               destination
LOG        all  --  anywhere             anywhere             limit: avg 5/sec burst 10 LOG level warning
DROP       all  --  anywhere             anywhere

Editar 1: Eu removi a corrente de registro e ainda não está funcionando.

Editar 2:

~$ sudo iptables -nvL
Chain INPUT (policy DROP 44132 packets, 12M bytes)
 pkts bytes target  prot opt in     out     source      destination
51909   12M ACCEPT  all  --  lo     *       0.0.0.0/0   0.0.0.0/0
7840K   11G ACCEPT  all  --  eth1   *       0.0.0.0/0   0.0.0.0/0
12130 4281K ACCEPT  all  --  eth0   *       0.0.0.0/0   0.0.0.0/0    state RELATED,ESTABLISHED

Chain FORWARD (policy DROP 0 packets, 0 bytes)
 pkts bytes target  prot opt in     out     source      destination
 921K   93M ACCEPT  all  --  eth1   eth0    0.0.0.0/0   0.0.0.0/0
1282K 1176M ACCEPT  all  --  eth0   eth1    0.0.0.0/0   0.0.0.0/0    state RELATED,ESTABLISHED

Chain OUTPUT (policy ACCEPT 203K packets, 44M bytes)
 pkts bytes target  prot opt in     out     source      destination
~$ sudo iptables -t nat -nvL
Chain PREROUTING (policy ACCEPT 57056 packets, 14M bytes)
 pkts bytes target     prot opt in     out     source    destination

Chain INPUT (policy ACCEPT 11567 packets, 2020K bytes)
 pkts bytes target     prot opt in     out     source    destination

Chain OUTPUT (policy ACCEPT 23793 packets, 2413K bytes)
 pkts bytes target     prot opt in     out     source    destination

Chain POSTROUTING (policy ACCEPT 11983 packets, 1286K bytes)
 pkts bytes target     prot opt in     out     source    destination
22262 2006K MASQUERADE  all  --  *      eth0    0.0.0.0/0 0.0.0.0/0
    
por Alfredo M 26.09.2016 / 22:53

0 respostas