Subido por Antonio Rodriguez Santos

CORRECION IPTABLES

Anuncio
correcion iptables di 14/10 (SENTIDO HOST->DNS)
dns
iptables -A INPUT -p tcp -d 194.228.88.4 --dport 53 -j ACCECPT
iptables -A OUTPUT -p tcp -s 194.228.88.4 --sport 53 -j ACCECPT
iptables -A INPUT -p udp -s 194.228.88.4 --dport 53 -j ACCECPT
iptables -A OUTPUT -p udp -s 194.228.88.4 --sport 53 -j ACCECPT
cuando el dns actua de cliente (CONVERSACION CON EL DNS SUPERIOR) (SENTIDO DNS SUPERIOR-->DNS)
iptables -A OUTPUT -p tcp -s 194.228.88.4 --dport 53 -j ACCECPT
iptables -A INPUT -p tcp --sport 53 -d 194.228.88.4 -j ACCECPT
iptables -A OUTPUT -p udp -s 194.228.88.4 --dport 53 -j ACCECPT
iptables -A INPUT -p udp --sport 53 -s 194.228.88.4 -j ACCECPT
Descargar