<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Chillispot Forum — Chillispot and VPN]]></title>
		<link>http://www.chillispot.org/chilliforum/topic30-chillispot-and-vpn.html</link>
		<atom:link href="http://www.chillispot.org/chilliforum/feed-rss-topic30.xml" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Chillispot and VPN.]]></description>
		<lastBuildDate>Tue, 19 May 2009 09:30:34 +0000</lastBuildDate>
		<generator>PunBB 1.4.4</generator>
		<item>
			<title><![CDATA[Re: Chillispot and VPN]]></title>
			<link>http://www.chillispot.org/chilliforum/post923.html#p923</link>
			<description><![CDATA[<p>I have seen this problem where the chillispot is on a private (NAT&#039;d) network and is NAT&#039;ing (default);&nbsp; The VPN/GRE packets are &#039;too&#039; encapsulated !!!</p><p>GRE[NAT[GRE[NAT[PAYLOAD]]]] sort of thing, this second layer of NAT/GRE sticks a spanner in the works - is this the case for you?</p>]]></description>
			<author><![CDATA[null@example.com (jonallport)]]></author>
			<pubDate>Tue, 19 May 2009 09:30:34 +0000</pubDate>
			<guid>http://www.chillispot.org/chilliforum/post923.html#p923</guid>
		</item>
		<item>
			<title><![CDATA[Re: Chillispot and VPN]]></title>
			<link>http://www.chillispot.org/chilliforum/post815.html#p815</link>
			<description><![CDATA[<p>i think this suggestion allowing tun0 input and forward is not working </p><p>anymore suggestions????</p>]]></description>
			<author><![CDATA[null@example.com (dannymagat)]]></author>
			<pubDate>Mon, 09 Mar 2009 08:08:06 +0000</pubDate>
			<guid>http://www.chillispot.org/chilliforum/post815.html#p815</guid>
		</item>
		<item>
			<title><![CDATA[Re: Chillispot and VPN]]></title>
			<link>http://www.chillispot.org/chilliforum/post77.html#p77</link>
			<description><![CDATA[<p>I dont have an environment here to test it now.<br />But I understand the chillispot creates a virtual interface called &quot;tun0&quot; from where all traffics come in from.</p><p>And on the iptables rule that you showed... &quot;tun0&quot; is not considered.</p><p>Maybe you should apply an ACCEPT on INPUT/FORWARD when interface is tun0.</p><p>$iptables -A INPUT -i tun0 -j ACCEPT<br />$iptables -A FORWARD -i tun0 -j ACCEPT</p><br /><p>Regards,</p>]]></description>
			<author><![CDATA[null@example.com (mson77)]]></author>
			<pubDate>Mon, 29 Oct 2007 16:20:00 +0000</pubDate>
			<guid>http://www.chillispot.org/chilliforum/post77.html#p77</guid>
		</item>
		<item>
			<title><![CDATA[Re: Chillispot and VPN]]></title>
			<link>http://www.chillispot.org/chilliforum/post76.html#p76</link>
			<description><![CDATA[<p>This is the code in the chillispot-1.1.0.tar file</p><br /><p>#!/bin/sh<br />#<br /># Firewall script for ChilliSpot<br /># A Wireless LAN Access Point Controller<br />#<br /># Uses $EXTIF (eth0) as the external interface (Internet or intranet) and<br /># $INTIF (eth1) as the internal interface (access points).<br />#<br />#<br /># SUMMARY<br /># * All connections originating from chilli are allowed.<br /># * Only ssh is allowed in on external interface.<br /># * Nothing is allowed in on internal interface.<br /># * Forwarding is allowed to and from the external interface, but disallowed<br />#&nbsp; &nbsp;to and from the internal interface.<br /># * NAT is enabled on the external interface.</p><p>IPTABLES=&quot;/sbin/iptables&quot;<br />EXTIF=&quot;eth0&quot;<br />INTIF=&quot;eth1&quot;</p><p>#Flush all rules<br />$IPTABLES -F <br />$IPTABLES -F -t nat<br />$IPTABLES -F -t mangle</p><p>#Set default behaviour<br />$IPTABLES -P INPUT DROP<br />$IPTABLES -P FORWARD ACCEPT<br />$IPTABLES -P OUTPUT ACCEPT</p><p>#Allow related and established on all interfaces (input)<br />$IPTABLES -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT</p><p>#Allow releated, established and ssh on $EXTIF. Reject everything else.<br />$IPTABLES -A INPUT -i $EXTIF -p tcp -m tcp --dport 22 --syn -j ACCEPT<br />$IPTABLES -A INPUT -i $EXTIF -j REJECT</p><p>#Allow related and established from $INTIF. Drop everything else.<br />$IPTABLES -A INPUT -i $INTIF -j DROP</p><p>#Allow http and https on other interfaces (input).<br />#This is only needed if authentication server is on same server as chilli<br />$IPTABLES -A INPUT -p tcp -m tcp --dport 80 --syn -j ACCEPT<br />$IPTABLES -A INPUT -p tcp -m tcp --dport 443 --syn -j ACCEPT</p><p>#Allow 3990 on other interfaces (input).<br />$IPTABLES -A INPUT -p tcp -m tcp --dport 3990 --syn -j ACCEPT</p><p>#Allow ICMP echo on other interfaces (input).<br />$IPTABLES -A INPUT -p icmp --icmp-type echo-request -j ACCEPT</p><p>#Allow everything on loopback interface.<br />$IPTABLES -A INPUT -i lo -j ACCEPT</p><p># Drop everything to and from $INTIF (forward)<br /># This means that access points can only be managed from ChilliSpot<br />$IPTABLES -A FORWARD -i $INTIF -j DROP<br />$IPTABLES -A FORWARD -o $INTIF -j DROP</p><p>#Enable NAT on output device<br />$IPTABLES -t nat -A POSTROUTING -o $EXTIF -j MASQUERADE</p><br /><br /><br /><p>Many thanks for you help</p>]]></description>
			<author><![CDATA[null@example.com (arosales)]]></author>
			<pubDate>Mon, 29 Oct 2007 16:05:35 +0000</pubDate>
			<guid>http://www.chillispot.org/chilliforum/post76.html#p76</guid>
		</item>
		<item>
			<title><![CDATA[Re: Chillispot and VPN]]></title>
			<link>http://www.chillispot.org/chilliforum/post75.html#p75</link>
			<description><![CDATA[<p>Hi,</p><p>I dont have here chilli.iptables (where is the code?).</p><p>Post the scripts here and maybe I should be able to help you.</p><p>Regards,</p><br /><br /><p>mson77</p>]]></description>
			<author><![CDATA[null@example.com (mson77)]]></author>
			<pubDate>Mon, 29 Oct 2007 12:28:48 +0000</pubDate>
			<guid>http://www.chillispot.org/chilliforum/post75.html#p75</guid>
		</item>
		<item>
			<title><![CDATA[Re: Chillispot and VPN]]></title>
			<link>http://www.chillispot.org/chilliforum/post74.html#p74</link>
			<description><![CDATA[<p>Any help for support pptp in chilli.iptables ? </p><br /><br /><p>Thanks</p>]]></description>
			<author><![CDATA[null@example.com (arosales)]]></author>
			<pubDate>Mon, 29 Oct 2007 11:44:47 +0000</pubDate>
			<guid>http://www.chillispot.org/chilliforum/post74.html#p74</guid>
		</item>
		<item>
			<title><![CDATA[Re: Chillispot and VPN]]></title>
			<link>http://www.chillispot.org/chilliforum/post70.html#p70</link>
			<description><![CDATA[<p>Thanks for the pointers.</p><br /><p>tp</p>]]></description>
			<author><![CDATA[null@example.com (tpelley)]]></author>
			<pubDate>Fri, 26 Oct 2007 11:18:53 +0000</pubDate>
			<guid>http://www.chillispot.org/chilliforum/post70.html#p70</guid>
		</item>
		<item>
			<title><![CDATA[Re: Chillispot and VPN]]></title>
			<link>http://www.chillispot.org/chilliforum/post67.html#p67</link>
			<description><![CDATA[<p>Hello,</p><br /><p>PPTP type VPN uses tcp port 1723 to the server.<br />Also protocol 47 (GRE) should be allowed.</p><p>This is a firewall issue of the linux box which hosts Chillispot... but it is not an issue of Chillispot.</p><p>Hope this helps,</p><br /><p>mson77</p>]]></description>
			<author><![CDATA[null@example.com (mson77)]]></author>
			<pubDate>Thu, 25 Oct 2007 21:27:58 +0000</pubDate>
			<guid>http://www.chillispot.org/chilliforum/post67.html#p67</guid>
		</item>
		<item>
			<title><![CDATA[Re: Chillispot and VPN]]></title>
			<link>http://www.chillispot.org/chilliforum/post64.html#p64</link>
			<description><![CDATA[<p>My problem is similar, the clients using my Chillispot server make all connections http, ftp etc... but not able to make a vpn (pptp) connection.</p><p>Using the Chillispot server as router ( with no Chillispot running and fixed IP assigned to interface connected to AP ) the users can connect with vpn server.</p><p>Any idea?</p><p>Thanks</p>]]></description>
			<author><![CDATA[null@example.com (arosales)]]></author>
			<pubDate>Thu, 25 Oct 2007 15:33:58 +0000</pubDate>
			<guid>http://www.chillispot.org/chilliforum/post64.html#p64</guid>
		</item>
		<item>
			<title><![CDATA[Chillispot and VPN]]></title>
			<link>http://www.chillispot.org/chilliforum/post63.html#p63</link>
			<description><![CDATA[<p>Can anyone tell me of any reason why clients using my Chillispot server are not able to make a vpn connection back to their own offices?</p><p>I have installed a chilli server on my corporate network to allow guests to connect to the internet without accessing my corporate LAN.&nbsp; My config is essentially the out of the box version running on Fedora Core4, with the only difference being that I am using an external FreeRADIUS server.</p><p>My wireless clients connect and get a 192.168.182.X IP assignment and allowed to connect to the internet. The are not able to make a vpn connection back to their own networks however.</p><p>tia.</p>]]></description>
			<author><![CDATA[null@example.com (tpelley)]]></author>
			<pubDate>Wed, 24 Oct 2007 14:51:39 +0000</pubDate>
			<guid>http://www.chillispot.org/chilliforum/post63.html#p63</guid>
		</item>
	</channel>
</rss>
