Bizonyos esetekben (pl. ha a fenti Pi-hole-lal kapcsolatos iptables szabályok hiányoznak vagy hibásak) a hálózati kapcsolat instabillá válhat. Az alábbi szabályok ugyanazok, mint a Pi-hole szekcióban — itt gyors referenciaként, ha kifejezetten ez a hibajelenség jelentkezik.
iptables -A INPUT -p tcp --destination-port 443 -j REJECT --reject-with tcp-reset
iptables -A INPUT -p udp --destination-port 80 -j REJECT --reject-with icmp-port-unreachable
iptables -A INPUT -p udp --destination-port 443 -j REJECT --reject-with icmp-port-unreachable
ip6tables -A INPUT -p tcp --destination-port 443 -j REJECT --reject-with tcp-reset
ip6tables -A INPUT -p udp --destination-port 80 -j REJECT --reject-with icmp6-port-unreachable
ip6tables -A INPUT -p udp --destination-port 443 -j REJECT --reject-with icmp6-port-unreachable
iptables-save > /etc/iptables/rules.v4
ip6tables-save > /etc/iptables/rules.v6