Salut !
J’ai un problème avec mon fichier /etc/nftables.conf
Après avoir redémarrer le service Nftables, je n’arrive plus à accéder à mon serveur en SSH.
Je suis sur un Debian 11 mis à jour avant la configuration du pare-feu.
Il y a bien les ; après chaque règles.
J’empêche tous les paquets sauf ceux que j’autorise (loopback, dns, ping, http, https, ssh)
3229 = ssh (port modifié dans /etc/ssh/sshd_config, service ssh redémarrer avant la config du pare-feu)
table ip filter {
chain input {
type filter hook input priority 0;
ct state established,related accept;
iifname lo accept;
ip protocol icmp accept;
tcp dport 3229 accept;
tcp dport {80, 443, 3306} accept;
policy drop;
}
chain forward {
type filter hook input priority 0; policy drop;
}
chain output {
type filter hook input priority 0;
ct state established,related accept;
oifname "lo" accept;
udp dport 53 accept;
tcp dport {80, 443} accept;
policy drop;
}
}
table ip6 filter {
chain input {
type filter hook input priority 0; policy drop;
}
chain forward {
type filter hook input priority 0; policy drop;
}
chain output {
type filter hook input priority 0; policy drop;
}
}
Merci pour vos réponses