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)".
33 lines
836 B
Plaintext
33 lines
836 B
Plaintext
|
|
|
|
|
|
#
|
|
# Rule 0 (NAT)
|
|
nat on dc2 proto {tcp udp icmp} from 192.168.1.0/24 to any -> (dc2)
|
|
nat on dc0 proto {tcp udp icmp} from 192.168.1.0/24 to any -> (dc0)
|
|
nat on dc1 proto {tcp udp icmp} from 192.168.1.0/24 to any -> (dc1)
|
|
#
|
|
# Rule 1 (NAT)
|
|
nat on dc1 proto {tcp udp icmp} from 192.168.1.0/24 to any -> (dc1)
|
|
#
|
|
# Rule 2 (NAT)
|
|
nat on dc1 proto {tcp udp icmp} from 192.168.1.0/24 to any -> 222.222.222.20
|
|
#
|
|
# Rule 3 (NAT)
|
|
nat on dc0 proto {tcp udp icmp} from 192.168.1.0/24 to any -> 222.222.222.40
|
|
|
|
#
|
|
# Rule 0 (dc0)
|
|
pass in quick on dc0 inet from any to 222.222.222.22 keep state
|
|
#
|
|
# Rule 1 (dc1)
|
|
pass out quick on dc1 inet from any to 222.222.222.22 keep state
|
|
#
|
|
# Rule 2 (global)
|
|
block quick inet from any to any
|
|
#
|
|
# Rule fallback rule
|
|
# fallback rule
|
|
block quick inet from any to any
|
|
|