
with default settings, I could access from PC1 to PC2.
But now I want to access from PC2 to PC1 (I want to access all PCs in this subnet and the other way round. ) So I've started with the following configuration:
1. setting static route on ISP-Router to 192.168.1.0 subnet (now tracert on PC2 shows me it knows the route)
2. disabling all firewall rules on Gargoyle-Router as here descriped: https://www.gargoyle-router.com/wiki/do ... e_firewall
so this is my current firewall configuration
Code: Select all
config defaults
option syn_flood '1'
option input 'ACCEPT'
option output 'ACCEPT'
option forward 'ACCEPT' (changed from 'REJECT')
config zone
option name 'wan'
list network 'wan'
list network 'wan6'
option input 'ACCEPT' (changed from 'REJECT')
option output 'ACCEPT'
option forward 'ACCEPT' (changed from 'REJECT')
option masq '1'
option mtu_fix '1'
config forwarding
option src 'lan'
option dest 'wan'
I've read about adding
Code: Select all
config forwarding
option src 'wan'
option dest 'lan'