Wireless clients have no route to ethernet clients in OpenWrt router
Posted
by superjoe30
on Server Fault
See other posts from Server Fault
or by superjoe30
Published on 2009-07-17T17:13:59Z
Indexed on
2010/04/12
20:03 UTC
Read the original article
Hit count: 579
networking
|openwrt
I'm using OpenWrt Kamikaze 8.09 on a Linksys WRT54g v1.1 router. I just flashed it with default settings and got everything working, except my wireless laptop cannot ping my desktop which is wired to the router. What can I do to fix this? (My desktop can ping other desktops wired to the router)
My routing table:
config 'defaults'
option 'syn_flood' '1'
option 'input' 'ACCEPT'
option 'output' 'ACCEPT'
option 'forward' 'REJECT'
config 'zone'
option 'name' 'lan'
option 'input' 'ACCEPT'
option 'output' 'ACCEPT'
option 'forward' 'REJECT'
config 'zone'
option 'name' 'wan'
option 'input' 'REJECT'
option 'output' 'ACCEPT'
option 'forward' 'REJECT'
option 'masq' '1'
config 'forwarding'
option 'src' 'lan'
option 'dest' 'wan'
option 'mtu_fix' '1'
config 'redirect'
option 'src' 'wan'
option '_name' 'ssh'
option 'proto' 'tcp'
option 'src_dport' '22'
option 'dest_ip' '192.168.1.100'
option 'dest_port' '22'
config 'redirect'
option 'src' 'wan'
option '_name' 'http'
option 'proto' 'tcp'
option 'src_dport' '8888'
option 'dest_ip' '192.168.1.100'
option 'dest_port' '8888'
© Server Fault or respective owner