mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-03-19 09:47:20 +01:00
compiler for PF does not need to generate protocol match "proto {tcp
udp icmp}" when service object used in the NAT rule is "any". The
reason this was done this way is lost in the mist of time; it's been
like this since very early versions of fwbuilder.
68 lines
1.5 KiB
Plaintext
68 lines
1.5 KiB
Plaintext
|
|
|
|
|
|
#
|
|
# Rule 0 (NAT)
|
|
# NETMAP and no -o itf
|
|
nat from 192.168.1.0/24 to any -> 22.22.22.0/24
|
|
#
|
|
# Rule 1 (NAT)
|
|
nat on em1 from 192.168.1.0/24 to any -> 222.222.222.40
|
|
#
|
|
# Rule 2 (NAT)
|
|
#
|
|
nat on em3 from 192.168.1.0/24 to any -> 222.222.222.40
|
|
#
|
|
# Rule 3 (NAT)
|
|
#
|
|
nat on { em1 em3 } from 192.168.1.0/24 to any -> 222.222.222.40
|
|
#
|
|
# Rule 4 (NAT)
|
|
nat on { em1 em3 } from 192.168.1.0/24 to any -> 222.222.222.40
|
|
#
|
|
# Rule 5 (NAT)
|
|
#
|
|
nat on ! em3 from 192.168.1.0/24 to any -> 222.222.222.40
|
|
#
|
|
# Rule 6 (NAT)
|
|
#
|
|
nat on { em0 em2 } from 192.168.1.0/24 to any -> 222.222.222.40
|
|
#
|
|
# Rule 7 (NAT)
|
|
nat on { em0 em2 } from 192.168.1.0/24 to any -> 222.222.222.40
|
|
#
|
|
# Rule 8 (NAT)
|
|
rdr from any to 222.222.222.40 -> 192.168.1.10
|
|
#
|
|
# Rule 9 (NAT)
|
|
rdr on em0 from any to 222.222.222.40 -> 192.168.1.10
|
|
#
|
|
# Rule 10 (NAT)
|
|
rdr on { em0 em2 } from any to 222.222.222.40 -> 192.168.1.10
|
|
#
|
|
# Rule 11 (NAT)
|
|
rdr on { em0 em2 } from any to 222.222.222.40 -> 192.168.1.10
|
|
#
|
|
# Rule 12 (NAT)
|
|
rdr on ! em0 from any to 222.222.222.40 -> 192.168.1.10
|
|
#
|
|
# Rule 13 (NAT)
|
|
rdr on { em1 em3 } from any to 222.222.222.40 -> 192.168.1.10
|
|
#
|
|
# Rule 14 (NAT)
|
|
rdr on { em1 em3 } from any to 222.222.222.40 -> 192.168.1.10
|
|
#
|
|
# Rule 15 (NAT)
|
|
# REDIRECT
|
|
rdr on em0 proto tcp from any to any port 80 -> 127.0.0.1 port 3128
|
|
|
|
#
|
|
# Rule 0 (global)
|
|
# 'catch all' rule
|
|
block log quick inet from any to any label "RULE 0 -- DROP "
|
|
#
|
|
# Rule fallback rule
|
|
# fallback rule
|
|
block quick inet from any to any label "RULE 10000 -- DROP "
|
|
|