souzacarlos
(usa Outra)
Enviado em 29/03/2016 - 10:58h
Bom dia
Dá uma olhada nesse pequeno modelo, criei uma coisa simples para que vc possa pegar teu cenário atual e ir adaptando, informa
caso não tenha entendido alguma coisa.
#!/bin/bash
#INTERFACE WAN = ETH0
REDE_LOCAL="MINHA_REDE_LOCAL"
SERVIDOR01=IP_SERVIDOR_LOCAL
iptables -P INPUT DROP
iptables -P OUTPUT ACCEPT
iptables -P FORWARD DROP
iptables -F
iptables -X
iptables -t nat -F
iptables -t nat -X
iptables -t mangle -F
iptables -t mangle -X
modprobe iptable_nat
modprobe ip_tables
echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
### Regras de INPUT ###
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
#### Regras de FORWARD ####
iptables -A FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A FORWARD -s $REDE_LOCAL -m state --state NEW -j ACCEPT
iptables -A FORWARD -p tcp -m multiport --dport 22,3128 -j ACCEPT # Aqui vc pode colocar todas as suas regras q vc esta colocando uma em cada linha ex: 22,3128,7000
##### REGRAS DE NAT MULTIPORT #####
iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 2222 -j DNAT --to $SERVIDOR01:22 # SERVIDOR SSH # Ex de regra de NAT