(E-Mail Removed) <(E-Mail Removed)> wrote:
> I am using Cisco VPN Client 4.04 on Linux to log onto the VPN server
> at my workplace.
I find vpnc a good alternative.
> The VPN Client works *fine* in the following cases:
> (ii) If I use the following iptables rules:
> # Allow incoming connections to port 500
> iptables -A INPUT -j ACCEPT -p udp --dport 500
> # Allow all udp traffic out!
> iptables -A OUTPUT -j ACCEPT -p udp
> Any ideas for a more elegant replacement to the "all udp" OUTPUT rule?
What does wireshark (ethereal), or its command-line friend tshark
(tcpdump) show you? Something like this should show you VPN related
traffic:
tshark -i any -nlp proto UDP and port 500
Once you can see the traffic you should be able to determine the
necessary rules.
Regards,
Chris