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