Hi,
I've been using OpenWrt on a Raspberry Pi 2 for about 6 months as a router on a stick with a low speed broadband connection, but have now decided to upgrade my router as I'm moving to a 300Mb/s fiber connection.
I've bought a Netgear R6260 and set it up as below, but I'm not able to get any communication between the networks which hang off the lan3 and lan4 interfaces. Traffic from lan3 & lan4 going out to the internet over the wan port works fine.
Can anyone advise if my issue is related to the config below?
If not, where else should i be looking?
Network Config
config interface 'loopback'
option device 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config globals 'globals'
option packet_steering '1'
config interface 'wan'
option device 'wan'
option proto 'dhcp'
config interface 'lan3'
option proto 'static'
option device 'lan3'
option ipaddr '192.168.3.1'
option netmask '255.255.255.0'
config interface 'lan4'
option proto 'static'
option device 'lan4'
option ipaddr '192.168.4.1'
option netmask '255.255.255.0'
config device
option name 'lan3'
option ipv6 '0'
config device
option name 'lan4'
option ipv6 '0'
Firewall Config
config defaults
option input 'ACCEPT'
option output 'ACCEPT'
option forward 'ACCEPT'
option synflood_protect '1'
config forwarding
option src 'lan'
option dest 'wan'
config zone
option name 'lan'
option input 'ACCEPT'
option output 'ACCEPT'
option forward 'ACCEPT'
list network 'lan3'
list network 'lan4'
config zone
option name 'wan'
option input 'REJECT'
option output 'ACCEPT'
option forward 'REJECT'
option masq '1'
option mtu_fix '1'
list network 'wan'
Thanks