Hello
i have two machines, suse and xp. I'm using iptables to natting from my linux and from xp i can enter google, even display resluts of searches, but when i try to access some sites, like hotmail or some others, is like i hasn't internet connection. In suse everything's OK. Somebody can help me solve the problem?
Also i can't connect messenger form xp. This is the script i'm using, and EVERYTHING is permitted.
Code:
$IPTABLES -P INPUT ACCEPT
$IPTABLES -F INPUT
$IPTABLES -P OUTPUT ACCEPT
$IPTABLES -F OUTPUT
$IPTABLES -P FORWARD ACCEPT
$IPTABLES -F FORWARD
$IPTABLES -t nat -F
echo " FWD: Allow all connections OUT and only existing and related ones IN"
$IPTABLES -A FORWARD -i $EXTIF -o $INTIF -j ACCEPT
$IPTABLES -A FORWARD -i $INTIF -o $EXTIF -j ACCEPT
$IPTABLES -A FORWARD -j LOG
echo " Enabling SNAT (MASQUERADE) functionality on $EXTIF"
$IPTABLES -t nat -A POSTROUTING -o $EXTIF -j MASQUERADE
Thanks