forked from guillaume.emorine/siotp
Nouveau fichier : sisr1/tp07/files_firewall/current_ruleset_partie_2.nft Nouveau fichier : sisr1/tp07/files_firewall/current_ruleset_partie_3.nft
37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
define netif = enp0s3
|
|
define dmzif = enp0s8
|
|
define lanif = enp0s9
|
|
|
|
table ip ipfilter{
|
|
chain prerouting {
|
|
type filter hook prerouting priority filter; policy drop;
|
|
icmp type echo-reply accept
|
|
icmp type echo-request iif {$lanif} accept
|
|
tcp dport 22 accept
|
|
}
|
|
chain system_in {
|
|
type filter hook input priority filter; policy drop;
|
|
icmp type echo-reply accept
|
|
icmp type echo-request iif {$lanif} accept
|
|
tcp dport 22 accept
|
|
}
|
|
chain routing {
|
|
type filter hook forward priority filter; policy drop;
|
|
icmp type echo-request iif {$lanif} accept
|
|
icmp type echo-reply oif {$lanif} accept
|
|
}
|
|
chain system_out {
|
|
type filter hook output priority filter; policy drop;
|
|
icmp type echo-reply oif {$lanif} accept
|
|
icmp type echo-request accept
|
|
tcp sport 22 accept
|
|
}
|
|
chain postrouting {
|
|
type filter hook postrouting priority filter; policy drop;
|
|
icmp type echo-request ip saddr {192.168.0.120, 10.0.0.254, 172.16.0.254} accept
|
|
icmp type echo-reply oif {$lanif} accept
|
|
icmp type echo-request iif {$lanif} accept
|
|
tcp sport 22 accept
|
|
}
|
|
}
|