![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.security.firewalls archiveConnection to SonicWall VPN through Linux IPTABLES Firewall/Proxy
From: <ajkessel@gmail.com>
Date: Tue Nov 01 2005 - 17:36:27 CET
(cross-posting from comp.os.linux.networking, where I got no replies):
I've set up a very simple iptables firewall/proxy box and have been
The connection is failing at the initial stage--the error is "The Peer
The relevant rules on the proxy linux box are as follows:
iptables -A FORWARD -i eth1 -o eth0 -j ACCEPT
(where eth0 faces the WAN and eth1 faces the LAN).
So it's about as simple as you can get. I previously used a DSL router
I was informed by sysadmin that UDP port 500 needs to be forwarded, so
iptables -A INPUT -p udp -i eth0 --sport 500 --dport 500 -j ACCEPT
and also:
iptables -A INPUT -p 50 -i eth0 -j ACCEPT
But none of those additional rules affected the result. I'm not even
I'd appreciate any advice about how to troubleshoot this.
(In case it's not obvious--the SonicWALL VPN Client is running on a
Running Debian sarge, kernel 2.6.8.
|