When a DNS request is sent to this host, a series of log entries, below, occurs showing dropped packets. This is not a good thing.
It appears that there is a rule that tells the firewall to drop those packets. The source IP does not matter.
How do I find and disable that rule?
2026-05-17T21:30:38-0700 sma-station12l.sma.com kernel: SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC=00:24:8c:88:9d:f3:a0:ad:9f:32:9d:74:86:dd SRC=fd2f:4760:521f:3f3c:0000:0000:c0a8:45f6 DST=fd2f:4760:521f:3f3c:0000:0000:c0a8:456d LEN=73 TC=0 HOPLIMIT=64 FLOWLBL=330100 PROTO=UDP SPT=35051 DPT=53 LEN=33
These are the only reject rules.
$ sudo sudo iptables -vnL | grep REJECT
0 0 REJECT tcp -- * * 0.0.0.0/0 0.0.0.0/0 reject-with tcp-reset
0 0 REJECT udp -- * * 0.0.0.0/0 0.0.0.0/0 reject-with icmp-port-unreachable
0 0 REJECT all -- * * 0.0.0.0/0 0.0.0.0/0 reject-with icmp-proto-unreachable
$ sudo sudo iptables -vnL | grep DROP
Chain INPUT (policy DROP 0 packets, 0 bytes)
0 0 DROP all -- * * 0.0.0.0/0 0.0.0.0/0
Chain FORWARD (policy DROP 0 packets, 0 bytes)
28 3009 DROP all -- * * 0.0.0.0/0 0.0.0.0/0 PKTTYPE = broadcast
23 6258 DROP all -- * * 0.0.0.0/0 0.0.0.0/0 /* sfw2.insert.pos */ PKTTYPE != unicast
0 0 LOG tcp -- * * 0.0.0.0/0 0.0.0.0/0 limit: avg 3/min burst 5 tcp flags:0x17/0x02 LOG flags 6 level 4 prefix "SFW2-INext-DROP-DEFLT "
0 0 LOG icmp -- * * 0.0.0.0/0 0.0.0.0/0 limit: avg 3/min burst 5 LOG flags 6 level 4 prefix "SFW2-INext-DROP-DEFLT "
5 357 LOG udp -- * * 0.0.0.0/0 0.0.0.0/0 limit: avg 3/min burst 5 ctstate NEW LOG flags 6 level 4 prefix "SFW2-INext-DROP-DEFLT "
44 3193 DROP all -- * * 0.0.0.0/0 0.0.0.0/0
$ sudo iptables -vnL | grep "SFW2-INext-DROP-DEFLT "
0 0 LOG tcp -- * * 0.0.0.0/0 0.0.0.0/0 limit: avg 3/min burst 5 tcp flags:0x17/0x02 LOG flags 6 level 4 prefix "SFW2-INext-DROP-DEFLT "
0 0 LOG icmp -- * * 0.0.0.0/0 0.0.0.0/0 limit: avg 3/min burst 5 LOG flags 6 level 4 prefix "SFW2-INext-DROP-DEFLT "
5 357 LOG udp -- * * 0.0.0.0/0 0.0.0.0/0 limit: avg 3/min burst 5 ctstate NEW LOG flags 6 level 4 prefix "SFW2-INext-DROP-DEFLT "