Bonjour,
ce parfeu sous W10 peut-il interdire nftables?
au boot le rectangle est présent puis puis pas de réseau IPv4 wan
architecture:
Livebox fibre 192.168.1.1
|-----------------------------serveur 192.168.1.30 Buster
enp7s0
enp8s0 10.0.0.30 vers un hub parefeu Orange Kaparsky W10 10.0.0.24
d’une manière simpliste, je voudrais que ces 2 machines communiques port 80 343 3306
/etc/nftables.conf refuse!
wireshark voit du traffic sur enp8s0
root@alpha30:/etc/init.d# arp -a
? (192.168.1.14) at b8:be:f4:0e:19:84 [ether] on enp7s0
? (192.168.1.133) at <incomplete> on enp7s0
_gateway (192.168.1.1) at ec:be:dd:86:7c:d0 [ether] on enp7s0
_gateway (192.168.1.1) at <incomplete> on enp8s0
? (10.0.0.24) at 2c:60:0c:87:ff:1f [ether] on enp8s0
? (192.168.1.23) at 70:77:81:ab:23:8b [ether] on enp7s0
root@alpha30:/etc/init.d#
root@alpha30:/etc/init.d# nft list chains
table inet filter {
chain input {
type filter hook input priority 0; policy accept;
}
}
table ip mon_filtreIPV4 {
chain prerouting {
type nat hook prerouting priority 0; policy accept;
}
chain postrouting {
type nat hook prerouting priority 0; policy accept;
}
}
table ip nat {
chain postrouting {
type nat hook postrouting priority 100; policy accept;
}
}
root@alpha30:/etc/init.d# nft list tables
table inet filter
table ip mon_filtreIPV4
table ip nat
pour info le iptables est OK,
je n’ai pas utilisé l’outil iptables ==> nftables
A vous lire pour avoir un /etc/nftables simple,
A+
JB1*