precisa de exemplo de Iptables para UDP

0

Eu configuro o openvpn no Centos vps. Tem venet0 e tun0 nic. Eu tento abrir a porta 5060 udp para o meu cliente pfsene vpn, ele mostra a porta udp aberta ou filtro. Estas regras iptables são certas?

iptables -A FORWARD -d 10.8.0.2 -i venet0 -p udp -m udp --dport 5060 -j ACCEPT 
iptables -t nat -A PREROUTING -d "vps public ip" -p udp -m udp --dport 5060 -j DNAT --to-destination 10.8.0.2
iptables -t nat -A POSTROUTING -s 10.8.0.0/255.255.255.0 -o venet0 -j SNAT --to-source "vps public ip"
    
por Khandaker Shahriar Amin 16.04.2018 / 12:51

1 resposta

0

Você pode simplesmente configurar as regras iptables usando firewall-cmd utility.

Por exemplo:

firewall-cmd --permanent --add-port=5060/udp
firewall-cmd --permanent --add-masquerade
firewall-cmd --reload
    
por 16.04.2018 / 13:04