My problem is that I want to enable voice chat in yahoo, when i try to connect my client behind squid to yahoo messenger with following options.
1) No porxies------------->never connect(no error shown only trying for a while and then no result)
2)firewall with no proxy------------------->connected but voice chat is not enable(no option for voice chat)
3)use proxies---------------------->connected but again voice chat is not enable(no option for voice)
4)No network detection----------->again failed to connect(no fate)
I've squid and firewall running on same machine
eth1 is my LAN side and eth0 is my Internet NIC.
configurations are
iptables -t nat -A PREROUTING -i eth1 -p tcp --dport 80 \
-j REDIRECT --to-port 8080
iptables -A INPUT -j ACCEPT -m state \
--state NEW,ESTABLISHED,RELATED -i eth1 -p tcp \
--dport 8080
iptables -A OUTPUT -j ACCEPT -m state \
--state NEW,ESTABLISHED,RELATED -o eth0 -p tcp \
--dport 80
iptables -A INPUT -j ACCEPT -m state \
--state ESTABLISHED,RELATED -i eth0 -p tcp \
--sport 80
iptables -A OUTPUT -j ACCEPT -m state \
--state ESTABLISHED,RELATED -o eth1 -p tcp \
--sport 80
and in the end I am using MASQUERADING which solve my msn problem but yahoo problem still presists.
plz guide me thanks
Regards,
FFIDX