blob: f5463f1822fefe8ed08293b6ede2901ee52205f2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# dynamic interfaces need not exist at load-time, but names must start
# with a letter. catches common macro typo cases of ($ext_ip) vs. ($ext_if)
nat on lo0 from any to any -> (lo0)
nat on lo0 from any to any -> (lo0:0)
nat on lo0 from any to any -> (nonexistent0)
nat on lo0 from any to any -> (nonexistent0:0)
nat on lo0 from any to any -> (10.1.2.3)
nat on lo0 from any to any -> (10.1.2.3:0)
|