Rename the interfaces to make the separate levels more clear.

This commit is contained in:
Tom Alexander
2022-10-29 21:47:32 -04:00
parent 016ed08440
commit 9168cc51cf
4 changed files with 17 additions and 14 deletions

View File

@@ -2,7 +2,7 @@ ext_if = "{ igb0 igb1 ix0 ix1 wlan0 }"
jail_net_v4 = "10.193.223.0/24"
dhcp = "{ bootpc, bootps }"
# allow = "{ nat_uplink0 }"
# allow = "{ host_uplink0 }"
tcp_pass_in = "{ 22 }"
udp_pass_in = "{ 53 51820 }"
@@ -15,7 +15,7 @@ set skip on lo
# redirections
nat on $ext_if inet from $jail_net_v4 to { any, !$jail_net_v4 } tag ALLOWED -> (wlan0)
rdr on nat_uplink0 inet proto {tcp, udp} from any to 10.193.223.1 port 53 tag ALLOWED -> 1.1.1.1 port 53
rdr on host_uplink0 inet proto {tcp, udp} from any to 10.193.223.1 port 53 tag ALLOWED -> 1.1.1.1 port 53
# filtering
block log all
@@ -37,4 +37,4 @@ pass in on $ext_if proto udp to any port $udp_pass_in
pass quick on $ext_if proto udp from any port $dhcp to any port $dhcp
pass in on nat_uplink0 proto udp from any to any port { 53 51820 }
pass in on host_uplink0 proto udp from any to any port { 53 51820 }