nouveau fichier : sio2/SISR/05-pxe/nftables.conf

This commit is contained in:
Rotsipitia Rahaingoharivahitra 2024-09-16 17:37:33 +02:00
parent 814f28c2f5
commit 6bfad8b604

25
sio2/SISR/05-pxe/nftables.conf Executable file
View File

@ -0,0 +1,25 @@
#!/usr/sbin/nft -f
flush ruleset
table inet filter {
chain input {
type filter hook input priority filter;
}
chain forward {
type filter hook forward priority filter;
}
chain output {
type filter hook output priority filter;
}
}
table inet nat {
chain prerouting {
type nat hook prerouting priority 0;
}
chain postrouting {
type nat hook postrouting priority 100;
oifname "enp0s3" masquerade
}
}