josesouza1987
(usa Coyote)
Enviado em 07/08/2013 - 14:09h
Agradeço pelas respostas mas ainda não deu certo.
Testei as duas linhas abaixo no arquivo \etc\coyote\firewall.local uma depois a outra reiniciando o firewall:
iptables -t nat -A PREROUTING -d 189.2.xxx.xxx -p tcp -m tcp --dport 18080 -j DNAT --to-destination 192.168.1.224:18080
iptables -t nat -A PREROUTING -p tcp -d 189.2.xxx.xxx --dport 18080 -j DNAT --to 192.168.1.224:18080
Meu arquivo \etc\coyote\firewall.local está assim:
# Local Custom Firewall rules
# Level 7 Filtering example:
#iptables -t mangle -A POSTROUTING -m layer7 --l7proto edonkey -j DROP
# Attention: To enable the commands below can cause some side effects
# Syn-flood and DOS protection
#iptables -A FORWARD -p tcp --syn -m limit --limit 1/s -j ACCEPT
# Port Scanners protection
#iptables -A FORWARD -p tcp --tcp-flags SYN,ACK,FIN,RST RST -m limit --limit 1/s -j ACCEPT
#iptables -A FORWARD -p tcp --tcp-flags ALL SYN,ACK -j DROP
# Ping-of-dead protection
#iptables -A FORWARD -p icmp --icmp-type echo-request -m limit --limit 1/s -j ACCEPT
# Speed UP DNS
#iptables -t mangle -A OUTPUT -p udp --dport 53 -j TOS --set-tos 0x08
#iptables -t mangle -A PREROUTING -p udp --dport 53 -j TOS --set-tos 0x10
# Speed UP HTTP
#iptables -t mangle -A OUTPUT -p tcp -j TOS --sport 80 --set-tos 0x08
#iptables -t mangle -A PREROUTING -p tcp --dport 80 -j TOS --set-tos 0x08
#iptables -t mangle -A OUTPUT -p tcp -j TOS --sport 80 --set-tos 0x10
iptables -t nat -A PREROUTING -d 189.2.xxx.xxx -p tcp -m tcp --dport 18080 -j DNAT --to-destination 192.168.1.224:18080