mapeamento toque interface com interface wifi

0

Aqui vamos nós ..

Ubuntu 16.04LTS

  1. O objetivo é conectar-se à rede externa por meio de uma interface de toque.
  2. A rede externa ou a Internet conectada via Ubuntu WiFi_interface - > Roteador WiFi - > ISP
  3. Os detalhes do IP são, Ubuntu WiFi IP: 192.168.1.10, GW 192.168.1.1 (Roteador ADSL)

Agora,

sudo tunctl -t tap0 
sudo ifconfig tap0 192.168.7.1 up 
sudo iptables -t nat -A POSTROUTING -o wlp12s0 -j MASQUERADE
sudo iptables -A FORWARD -i tap0 -j ACCEPT

a configuração está intacta, mas não ajuda.

dinesh@dkubuntu:~$ ping -c 1 -I tap0 192.168.1.10
PING 192.168.1.10 (192.168.1.10) from 192.168.7.1 tap0: 56(84) bytes of data.
From 192.168.7.1 icmp_seq=1 Destination Host Unreachable

--- 192.168.1.10 ping statistics ---
1 packets transmitted, 0 received, +1 errors, 100% packet loss, time 0ms

Seguir traços pode ajudar vocês,

dinesh@dkubuntu:~$ sudo iptables -L
[sudo] password for dinesh: 
Chain INPUT (policy ACCEPT)
target     prot opt source               destination         

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         
ACCEPT     all  --  anywhere             anywhere            

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination

O truque acima funcionou anteriormente em PC diferente, mas falhando agora. Vocês também sugerem a ponte? Na verdade eu tentei essa opção também, mas não funcionou.

Aprecio se alguém poderia me ajudar a descobrir o mistério por trás do problema.

    
por Dinesh Kalidassan 20.02.2017 / 09:17

0 respostas