| Main index | Section 4 | Options |
To load the mac_ipacl policy module at boot time, add the following line in your kernel configuration file: options MAC
and in loader.conf(5) add:
mac_ipacl_load= YES""
Its default behavior is to deny all IP addresses for the jail if mac_ipacl policy is enforced and allow/deny IP (or subnets) according to the security.mac.ipacl.rules string specified with sysctl(8)
| security.mac.ipacl.ipv4 | |
| Enforce mac_ipacl for IPv4 addresses. (Default: 1). | |
| security.mac.ipacl.ipv6 | |
| Enforce mac_ipacl for IPv6 addresses. (Default: 1). | |
| security.mac.ipacl.rules | |
|
The IP address access control list is specified in the following format:
| |
| jid | Describe the jail id of the jail for which the rule is written. |
| allow | 1 for allow and 0 for deny. Decides action performed for the rule. |
| interface | |
| Name of the interface the rule is enforced for. If the interface is left empty then it is a wildcard to enforce the rule for all interfaces. | |
| addr_family | |
| Address family of the IP_addr. The input to be given as AF_INET or AF_INET6 string only. | |
| IP_addr | IP address (or subnet) to be allowed/denied. Action depends on the prefix length. |
| prefix | Prefix length of the subnet to be enforced by the policy. -1 implies the policy is enforced for the individual IP address. For a non-negative value, a range of IP addresses (present in subnet) which is calculated as subnet = IP_addr & mask. |
| 1. |
Assign ipv4=1, ipv6=0 and rules="1,1,,AF_INET,169.254.123.123/-1"
It allow only 169.254.123.123 IPv4 address for all interfaces (wildcard) of jail 1. It allows all IPv6 addresses since the policy is not enforced for IPv6. |
| 2. |
Assign ipv4=1, ipv6=1 and rules="1,1,epair0b,AF_INET6,fe80::/32@1,0,epair0b,AF_INET6,fe80::abcd/-1"
It denies all IPv4 addresses as the policy is enforced but no rules are specified about it. It allows all IPv6 addresses in subnet fe80::/32 except fe80::abcd for interface epair0b only. |
| 3. |
Assign ipv4=1, ipv6=1, rules="2,1,,AF_INET6,fc00::/7@2,0,,AF_INET6,fc00::1111:2200/120@2,1,,AF_INET6,fc00::1111:2299/-1@1,1,,AF_INET,198.51.100.0/24"
It allows IPv4 in subnet 198.51.100.0/24 for jail 2 and all interfaces. It allows IPv6 addresses in subnet fc00::/7 but denies subnet fc00::1111:2200/120, and allows individual IP fc00::1111:2299 from the denied subnet for all interfaces in jail 2. |
| MAC_IPACL (4) | July 25, 2023 |
| Main index | Section 4 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.
| “ | The number of UNIX installations has grown to 10, with more expected. | ” |
| — UNIX Programming Manual, 1972 | ||