-
Notifications
You must be signed in to change notification settings - Fork 0
Basics
[Basics]
Lists
-Lists are defined by specifying items within { } brackets.
Ex1: When pfctl encounters a list during loading of the ruleset, it creates multiple rules, one for each item in the list:
block out on fxp0 from { 192.168.0.1, 10.5.32.6 } to any
gets expanded to:
block out on fxp0 from 192.168.0.1 to any
block out on fxp0 from 10.5.32.6 to any
Ex2: Multiple lists can be specified within a rule:
match in on fxp0 proto tcp to port { 22 80 } rdr-to 192.168.0.6
block out on fxp0 proto { tcp udp } from { 192.168.0.1, \
10.5.32.6 } to any port { ssh telnet }
Note: Commas between list items are optional.
Ex3: Lists can also contain nested lists:
trusted = "{ 192.168.1.2 192.168.5.36 }"
pass in inet proto tcp from { 10.10.0.0/24 $trusted } to port 22
Macros
-Macros are user-defined variables that can hold IP addresses, port numbers, interface names, etc.
-Macro names must start with a letter and may contain letters, digits, and underscores. Macro names cannot be reserved words such as pass, out, or queue.
Ex1: This creates a macro named ext_if. When a macro is referred to after it's been created, its name is preceded with a $ character.
ext_if = "fxp0"
block in on $ext_if from any to any
Ex2: Macros can also expand to lists, such as:
friends = "{ 192.168.1.1, 10.0.2.5, 192.168.43.53 }"
Ex3: Macros can be defined recursively. Since macros are not expanded within quotes the following syntax must be used:
host1 = "192.168.1.1"
host2 = "192.168.1.2"
all_hosts = "{" $host1 $host2 "}"
The macro $all_hosts now expands to 192.168.1.1, 192.168.1.2.