Displaying 1 result from an estimated 1 matches for "wlan2all".
Did you mean:
wan2all
2005 May 27
5
Problems with dynamic zones
...y
this as much as possible to get problem clear.
Problem is:
Zones:
vpn
wlan
net
Interfaces:
net eth0
wlan eth1
Policies:
vpn all REJECT
net all DROP
wlan all REJECT
all wlan REJECT
all all REJECT
shorewall add eth0:10.10.0.0/24 vpn
produces:
- -A eth1_dynf -d 10.10.0.0/255.255.255.0 -o eth0 -j wlan2all
and then I add another host to vpn zone
shorewall add eth1:192.0.2.1 vpn
Which will generate this ruleset after previous one.
- -A eth1_dynf -s 192.0.2.1 -d 10.10.0.0/255.255.255.0 -o eth0 -j vpn2vpn
- -A eth1_dynf -s 192.0.2.1 -o eth1 -j vpn2dmz
- -A eth1_dynf -s 192.0.2.1 -o eth0 -j vpn2net
-...