이것은 내 nftables 구성 파일입니다.
sudo cat /etc/nftables.conf
#!/usr/sbin/nft -f
flush ruleset
table inet filter {
chain input {
type filter hook input priority 0; policy drop;
iif lo accept
}
chain forward {
type filter hook forward priority 0; policy drop;
}
chain output {
type filter hook output priority 0; policy accept;
}
}
Firefox에서 웹페이지를 열면 다음과 같은 내용이 나타납니다.
DNS_PROBE_FINISHED_NO_INTERNET
, 포트 80을 닫지 않았는데 왜 웹페이지가 열리지 않나요? /etc/nftables.conf 파일을 삭제하면 모든 웹 페이지를 탐색할 수 있습니다.
sudo rm /etc/nftables.conf
답변1
PC가 패킷을 수신하지 못하도록 차단했습니다.
chain input {
type filter hook input priority 0; policy drop;
이 파일을 삭제해도 도움이 되지 않습니다. 재부팅하거나 다음 명령을 실행해야 합니다.sudo nft flush ruleset