root / files / config / puppet-ip-nat.nft @ 8efbdf9a
Historique | Voir | Annoter | Télécharger (648 octets)
1 |
table ip nat { |
---|---|
2 |
include "/etc/nftables/puppet/ip-nat-chains-*.nft" |
3 |
|
4 |
chain PREROUTING { |
5 |
type nat hook prerouting priority 0 |
6 |
policy accept |
7 |
|
8 |
include "/etc/nftables/puppet/ip-nat-chain-prerouting-*.nft" |
9 |
} |
10 |
chain INPUT { |
11 |
type nat hook input priority 100 |
12 |
policy accept |
13 |
|
14 |
include "/etc/nftables/puppet/ip-nat-chain-input-*.nft" |
15 |
} |
16 |
chain OUTPUT { |
17 |
type nat hook output priority 0 |
18 |
policy accept |
19 |
|
20 |
include "/etc/nftables/puppet/ip-nat-chain-output-*.nft" |
21 |
} |
22 |
|
23 |
chain POSTROUTING { |
24 |
type nat hook postrouting priority 100 |
25 |
policy accept |
26 |
|
27 |
include "/etc/nftables/puppet/ip-nat-chain-postrouting-*.nft" |
28 |
} |
29 |
} |