Hi Danke fĂĽr die Zahlreiche Diskussionsrunde.
Also nochmal genauer und ausfĂĽhrlicher meine Topologie.
Es schaut so aus, dass 
ROUTER1 fix vorgegeben und konfiguriert ist von meinem ISP. Dieser hat eben einen DHCP laufen und versorgt mich mit NAT in die AuĂźenwelt.
Der Router2 von mir besitzt 2 Interfaces:
ETHERNET: 192.168.0.22 (Fixe IP eingestellt).
WLAN: 192.168.10.x (hier läuft ein DHCP, der Router reagiert auf 192.168.10.1)
ROUTER3 ist aufgrund der geringen WLAN Reichweite von Router2 eingesetzt. 
Dieser besitzt 2 WLAN Interfaces mit folgenden IPs:
192.168.11.x und wird per 192.168.10.240 mit dem Router2 ĂĽber WLAN verbunden.
Die Clients erhalten die IP 192.168.11.x per DHCP und aben als Gateway 192.168.11.1 eingestellt.
Clients des Router2 erhalten den Gateway 192.168.10.1 und eine IP im 192.168.10.x Bereich.
Alle Subnetz Masken sind auf 255.255.255.0 eingestellt.
Die Internet Verbindung läuft auf ALLEN Clients problemlos.
Es liegt hier nur ein Firewall problem vor.
Router 2 und 3 sind sog. FON ROUTER.
Beispielsweise schaut die firewall.user auf Router2 so aus:
- Code: Alles auswählen
 config_load remote                                                                                      
config_get ssh method ssh                                                                               
config_get webif method webif                                                                           
config_get rssh method rssh                                                                             
                                                                                                        
WAN="$wan_ifname"                                                                                       
LAN="$lan_ifname"                                                                                       
                                                                                                        
iptables -F input_rule                                                                                  
iptables -F output_rule                                                                                 
iptables -F forwarding_rule                                                                             
iptables -t nat -F prerouting_rule                                                                      
iptables -t nat -F postrouting_rule                                                                     
                                                                                                        
### BIG FAT DISCLAIMER                                                                                  
## The "-i $WAN" is used to match packets that come in via the $WAN interface.                          
## it WILL NOT MATCH packets sent from the $WAN ip address -- you won't be able                         
## to see the effects from within the LAN.                                                              
                                                                                                        
### Open port to WAN and LAN                                                                            
## -- This allows port 22 to be answered by (dropbear on) the router                                    
#iptables -t nat -A prerouting_rule -i $WAN -p tcp --dport 22 -j ACCEPT                                 
#iptables        -A input_rule      -i $WAN -p tcp --dport 22 -j ACCEPT                                 
                                                                                                        
### Open Webinterface to WAN (available to LAN only by default)                                         
#iptables -t nat -A prerouting_rule -i $WAN -p tcp --dport 80 -j ACCEPT                                 
#iptables               -A input_rule      -i $WAN -p tcp --dport 80 -j ACCEPT                          
                                                                                                        
### Port forwarding                                                                                     
## -- This forwards port 8080 on the WAN to port 80 on 192.168.1.2                                      
# iptables -t nat -A prerouting_rule -i $WAN -p tcp --dport 8080 -j DNAT --to 192.168.1.2:80            
# iptables        -A forwarding_rule -i $WAN -p tcp --dport 80 -d 192.168.1.2 -j ACCEPT       
### DMZ                                                                                                 
## -- Connections to ports not handled above will be forwarded to 192.168.1.2                           
# iptables -t nat -A prerouting_rule -i $WAN -j DNAT --to 192.168.1.2                                   
# iptables        -A forwarding_rule -i $WAN -d 192.168.1.2 -j ACCEPT                                   
                                                                                                        
if enabled $rssh && enabled $ssh                                                                        
then                                                                                                    
        iptables -t nat -A prerouting_rule -i $WAN -p tcp --dport 22 -j ACCEPT                          
        iptables        -A input_rule      -i $WAN -p tcp --dport 22 -j ACCEPT                          
fi                                                                                                      
                                                                                                        
if enabled $webif                                                                                       
then                                                                                                    
        iptables -t nat -A prerouting_rule -i $WAN -p tcp --dport 80 -j ACCEPT                          
        iptables                -A input_rule      -i $WAN -p tcp --dport 80 -j ACCEPT