depot du TP6

This commit is contained in:
2025-05-05 09:07:35 +02:00
parent 2481e8eb05
commit 363e22a082
7 changed files with 383 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
table ip ipfilter {
chain routing {
type filter hook forward priority filter; policy accept;
icmp type echo-request iif { "enp0s3", "enp0s9" } drop
icmp type { echo-reply, echo-request } accept
drop
}
chain system_in {
type filter hook input priority filter; policy accept;
icmp type echo-request iif { "enp0s3", "enp0s9" } drop
}
}