Olá a todos.

Estou trabalhando com uma rede de roteadores sem fio em Malha (MESH) onde cada roteador possui 2 interfaçes de rede sem fio.

Uma interfaçe eu uso como um backbone sem fio e a outra para acesso aos clientes em cada roteador. Os IP's das interfaces clientes são da faixa 192.168.X.1 onde X é o número que indentifica o roteador, e o ip do bckbone é 172.16.X.1. O X é o mesmo em cada roteador.

O problema é que eu não consigo pingar de cliente para cliente ou gw de outra rede. Por exemplo:

Cliente com ip 192.168.6.100 pingar para o cliente 192.168.5.100 ou para 192.168.5.1 (GW).

O que teria que acontecer é o roteador 6, que tem rota para o roteador 5, mandar os dados através do backbone através do ip 172.16.6.1 (ip do backbone do roteador 6) para o 172.16.5.1 (IP do backbone do roteador 5)

Ele diz que ou o Host está down ou não há rota para o host. No entanto se eu, como cliente, pingar para o ip do backbone do outro roteador (192.168.6.100 para 172.16.5.1) isso funciona. Se eu entrar em algum roteador via ssh, eu cosigo pingar os clientes dele, o ip do backbone dele, o ip do backbone de outro roteador e algum cliente de outro roteador.

Tabela de roteamente do um dos roteadores (o outro está do mesmo jeito, mudando apenas os IP's)

Código :
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
172.16.6.1      0.0.0.0         255.255.255.255 UH    2      0        0 eth1
192.168.6.0     172.16.6.1      255.255.255.0   UG    2      0        0 eth1
172.16.0.0      0.0.0.0         255.255.0.0     U     0      0        0 eth1
169.254.0.0     0.0.0.0         255.255.0.0     U     0      0        0 br0
192.168.0.0     0.0.0.0         255.255.0.0     U     0      0        0 br0
127.0.0.0       0.0.0.0         255.0.0.0       U     0      0        0 lo
Informações do IPTABLES -L
Código :
Chain INPUT (policy ACCEPT)
target     prot opt source               destination         
DROP       tcp  --  anywhere             anywhere            tcp dpt:webcache 
DROP       tcp  --  anywhere             anywhere            tcp dpt:www 
DROP       tcp  --  anywhere             anywhere            tcp dpt:https 
DROP       tcp  --  anywhere             anywhere            tcp dpt:69 
DROP       tcp  --  anywhere             anywhere            tcp dpt:ssh 
DROP       tcp  --  anywhere             anywhere            tcp dpt:ssh 
DROP       tcp  --  anywhere             anywhere            tcp dpt:telnet 
DROP       tcp  --  anywhere             anywhere            tcp dpt:telnet 
 
Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         
ACCEPT     gre  --  192.168.0.0/16       anywhere            
ACCEPT     tcp  --  192.168.0.0/16       anywhere            tcp dpt:1723 
ACCEPT     0    --  anywhere             anywhere            
ACCEPT     0    --  anywhere             anywhere            
logdrop    0    --  anywhere             anywhere            state INVALID 
TCPMSS     tcp  --  anywhere             anywhere            tcp flags:SYN,RST/SYN TCPMSS clamp to PMTU 
lan2wan    0    --  anywhere             anywhere            
ACCEPT     0    --  anywhere             anywhere            state RELATED,ESTABLISHED 
ACCEPT     udp  --  anywhere             anywhere            udp dpt:698 
ACCEPT     udp  --  anywhere             anywhere            udp spt:698 
TRIGGER    0    --  anywhere             anywhere            TRIGGER type:in match:0 relate:0 
trigger_out  0    --  anywhere             anywhere            
ACCEPT     0    --  anywhere             anywhere            state NEW 
DROP       0    --  anywhere             anywhere            
ACCEPT     0    --  anywhere             anywhere            
 
Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination         
 
Chain advgrp_1 (0 references)
target     prot opt source               destination         
 
Chain advgrp_10 (0 references)
target     prot opt source               destination         
 
Chain advgrp_2 (0 references)
target     prot opt source               destination         
 
Chain advgrp_3 (0 references)
target     prot opt source               destination         
 
Chain advgrp_4 (0 references)
target     prot opt source               destination         
 
Chain advgrp_5 (0 references)
target     prot opt source               destination         
 
Chain advgrp_6 (0 references)
target     prot opt source               destination         
 
Chain advgrp_7 (0 references)
target     prot opt source               destination         
 
Chain advgrp_8 (0 references)
target     prot opt source               destination         
 
Chain advgrp_9 (0 references)
target     prot opt source               destination         
 
Chain grp_1 (0 references)
target     prot opt source               destination         
 
Chain grp_10 (0 references)
target     prot opt source               destination         
 
Chain grp_2 (0 references)
target     prot opt source               destination         
 
Chain grp_3 (0 references)
target     prot opt source               destination         
 
Chain grp_4 (0 references)
target     prot opt source               destination         
 
Chain grp_5 (0 references)
target     prot opt source               destination         
 
Chain grp_6 (0 references)
target     prot opt source               destination         
 
Chain grp_7 (0 references)
target     prot opt source               destination         
 
Chain grp_8 (0 references)
target     prot opt source               destination         
 
Chain grp_9 (0 references)
target     prot opt source               destination         
 
Chain lan2wan (1 references)
target     prot opt source               destination         
 
Chain logaccept (0 references)
target     prot opt source               destination         
ACCEPT     0    --  anywhere             anywhere            
 
Chain logdrop (1 references)
target     prot opt source               destination         
DROP       0    --  anywhere             anywhere            
 
Chain logreject (0 references)
target     prot opt source               destination         
REJECT     tcp  --  anywhere             anywhere            tcp reject-with tcp-reset 
 
Chain trigger_out (1 references)
target     prot opt source               destination
Informaçõesdo IPTABLES -L -t nat

Código :
target     prot opt source               destination         
DNAT       icmp --  anywhere             0.0.0.0             to:192.168.5.1 
 
Chain POSTROUTING (policy ACCEPT)
target     prot opt source               destination         
 
Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination
Quem puder dar uma ajuda ai, agradeçeria muito!