mirror of
https://github.com/fwbuilder/fwbuilder
synced 2025-10-16 07:28:25 +02:00
should use "(interface)" syntax to the right of "->" in NAT rules. This now works for all interfaces, including those that have ip addresses in fwbuilder configuration, when interface object appears in "Translated Source" in a nat rule. When firewall object appears in "Translated Source", it gets replaced with a set of its interfaces which also get translated into "-> (interface)".
53 lines
1.3 KiB
Plaintext
53 lines
1.3 KiB
Plaintext
|
|
set optimization conservative
|
|
|
|
#
|
|
# Scrub rules
|
|
#
|
|
scrub in all no-df
|
|
scrub out all random-id
|
|
|
|
|
|
#
|
|
# Prolog script
|
|
#
|
|
# prolog
|
|
# prolog commands go after scrub commands
|
|
|
|
#
|
|
# End of prolog script
|
|
#
|
|
#
|
|
# Rule 0 (NAT)
|
|
nat on le0 proto {tcp udp icmp} from 192.168.1.0/24 to any -> 22.22.22.21
|
|
#
|
|
# Rule 1 (NAT)
|
|
nat on le0 proto {tcp udp icmp} from 192.168.1.0/24 to any -> (le0) bitmask
|
|
#
|
|
# Rule 2 (NAT)
|
|
nat proto {tcp udp icmp} from 192.168.1.0/24 to any -> 22.22.22.0/28 source-hash
|
|
#
|
|
# Rule 3 (NAT)
|
|
nat proto {tcp udp icmp} from 192.168.1.0/24 to any -> { 22.22.22.1 , 22.22.22.2/31 , 22.22.22.4 , 22.22.22.5 } round-robin static-port
|
|
#
|
|
# Rule 4 (NAT)
|
|
rdr proto {tcp udp icmp} from any to 22.22.22.21 -> { 192.168.1.10 , 192.168.1.20 } round-robin
|
|
|
|
# Policy compiler errors and warnings:
|
|
# firewall3:Policy:0: warning: Changing rule direction due to self reference
|
|
#
|
|
# Rule 0 (global)
|
|
# All other attempts to connect to
|
|
# the firewall are denied and logged
|
|
# firewall3:Policy:0: warning: Changing rule direction due to self reference
|
|
|
|
block in log quick inet from any to self label "RULE 0 -- DROP "
|
|
#
|
|
# Rule 1 (global)
|
|
pass quick inet from 192.168.1.0/24 to any keep state ( max 1000 ) label "RULE 1 -- ACCEPT "
|
|
#
|
|
# Rule fallback rule
|
|
# fallback rule
|
|
block quick inet from any to any label "RULE 10000 -- DROP "
|
|
|