Stefan
(usa Debian)
Enviado em 02/08/2011 - 17:25h
# Limpa e inicializa os modulos
#******************************
#
iptables -F
iptables -t nat -F
iptables -t mangle -F
modprobe iptable_nat
#
#Lib
iptables -t nat -A PREROUTING -s 192.168.1.250 -d 0.0.0.0/0 -j ACCEPT
# Proxy transparente (Redireciona para o squid) - eth1 -> Placa de rede da intranet
#********************************************************
#
iptables -t nat -A PREROUTING -i eth1 -p tcp --dport 80 -j REDIRECT --to-port 3128
#
# Compartilha Internet - eth0 -> Placa de rede da internet
#********************************************************
#
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
echo 1 > /proc/sys/net/ipv4/ip_forward
Está bem simples a conf do iptables. Aceito sugestões tbm :p