root / files / config / puppet-nat.nft @ a6064b9f
Historique | Voir | Annoter | Télécharger (630 octets)
1 | 0ba57c66 | mh | table nat { |
---|---|---|---|
2 | include "/etc/nftables/puppet/nat-chains-*.nft" |
||
3 | |||
4 | chain PREROUTING { |
||
5 | type nat hook prerouting priority 0 |
||
6 | policy accept |
||
7 | |||
8 | include "/etc/nftables/puppet/nat-chain-prerouting-*.nft" |
||
9 | } |
||
10 | chain INPUT { |
||
11 | type nat hook input priority 100 |
||
12 | policy accept |
||
13 | |||
14 | include "/etc/nftables/puppet/nat-chain-input-*.nft" |
||
15 | } |
||
16 | a6064b9f | tr | chain OUTPUT { |
17 | 0ba57c66 | mh | type nat hook output priority 0 |
18 | policy accept |
||
19 | |||
20 | include "/etc/nftables/puppet/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/nat-chain-postrouting-*.nft" |
||
28 | } |
||
29 | } |