<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>HOWTO :: VoIP: Whosesale :: Calling Card :: OpenSer :: Radius :: Asterisk :: FreeSwitch :: A2Billing :: IVR :: Colo :: Colocations :: GADGETS &#187; PPTP</title>
	<atom:link href="http://callsolutions.org/category/linuxunix-tutorials/vpn/pptp/feed/" rel="self" type="application/rss+xml" />
	<link>http://callsolutions.org</link>
	<description>You can also find CCNA :: CCNAP :: Exam, Brandump, CheatSheet, Sample Exams</description>
	<lastBuildDate>Thu, 29 Apr 2010 14:23:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>HOWTO: Debian VPN PPTP</title>
		<link>http://callsolutions.org/howto-debian-vpn-pptp/</link>
		<comments>http://callsolutions.org/howto-debian-vpn-pptp/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 18:34:12 +0000</pubDate>
		<dc:creator>nelson</dc:creator>
				<category><![CDATA[PPTP]]></category>
		<category><![CDATA[VPN]]></category>
		<category><![CDATA[Debian Etch VPN]]></category>
		<category><![CDATA[DEbian Windows PPTP]]></category>
		<category><![CDATA[IPSEC]]></category>

		<guid isPermaLink="false">http://callsolutions.org/?p=9</guid>
		<description><![CDATA[This tutorial will guide you how to install and configure VPN PPTP in Debian Etch. The installation is straightforward.
Note: Make sure that your VPN Server has two Network Interface Card (NIC). One for Outside Interface (where the public IP is configured) and the other is INSIDE interface (where your LAN IP is configured)
Introduction
What is PPTP? [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial will guide you how to install and configure VPN PPTP in Debian Etch. The installation is straightforward.</p>
<p>Note: Make sure that your VPN Server has two Network Interface Card (NIC). One for Outside Interface (where the public IP is configured) and the other is INSIDE interface (where your LAN IP is configured)</p>
<p><strong>Introduction</strong></p>
<p><strong>What is PPTP?</strong> Short for <em><strong>P</strong>oint-to-<strong>P</strong>oint <strong>T</strong>unneling <strong>P</strong>rotocol</em>, a new <span style="position: static; text-decoration: underline;"><span style="font-weight: 400; font-size: 16px; position: static; color: blue;"><span class="kLink" style="font-weight: 400; font-size: 16px; position: static; font-family: serif; color: blue;">technology</span></span></span> for creating <em>Virtual Private Networks (VPNs)</em> <em>, </em>developed jointly by Microsoft Corporation, U.S. Robotics, and several remote access vendor companies, known collectively as the <em>PPTP Forum.</em> A VPN is a private network of computers that uses the public Internet to connect some nodes. Because the Internet is essentially an open <span style="position: static; text-decoration: underline;"><span style="font-weight: 400; font-size: 16px; position: static; color: blue;"><span class="kLink" style="font-weight: 400; font-size: 16px; position: static; font-family: serif; color: blue;">network</span></span></span>, the Point-to-Point Tunneling Protocol (PPTP) is used to ensure that messages transmitted from one VPN node to another are secure. With PPTP, users can dial in to their corporate network via the Internet.</p>
<p><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script><a href="http://www.poptop.org/" target="_blank"><strong>PPTP</strong></a> is known to be less secure than other VPN software, but if you need a quick solution for a VPN server that will connect out of the box from Windows workstations PPTP is the obvious choice. <em>This post will show how easy it is to setup a pptp vnp server on Debian Etch.<br />
</em><span id="more-9"></span></p>
<p><strong>Installation</strong></p>
<blockquote><p><em>apt-get install pptp</em></p></blockquote>
<p>(this will install also some dependencies: bcrelay and ppp). The default pptpd configuration file is installed under <strong>/etc/pptpd.conf</strong> ; you can change any of the available options (samples are included in the configuration file as comments), but really the only thing that needs to be configured is the ip of the local server used by pptpd as the local gateway for the remote hosts and the remote users assigned ips:</p>
<blockquote><p><em><code>localip 192.168.1.1<br />
remoteip 192.168.1.100-120</code></em></p></blockquote>
<p>here we will use the local ip 192.168.1.1 as the pptpd ip and the remote users will be allocated the first available ip from the range 192.168.1.100 &#8211; 192.168.1.120 (meaning we can have a maximum of 20 simultaneous vpn users connected to this pptp server). These ips are assigned based on the particular setup, being either a pair of private ips (just like in my example above) or even real ips.</p>
<p>The debian package also uses the file <strong>/etc/ppp/pptpd-options</strong> containing the main pptpd server configs. A typical config will look like this:</p>
<blockquote><p>name My.VPN-PPTP</p>
<p>refuse-pap<br />
refuse-chap<br />
refuse-mschap<br />
require-mschap-v2<br />
require-mppe-128<br />
ms-dns 192.168.1.1<br />
proxyarp<br />
nodefaultroute<br />
lock<br />
nobsdcomp<br />
noipx<br />
mtu 1490<br />
mru 1490</p>
<p># client        server  secret                 IP addresses<code><br />
user            *       password               *</code><code><br />
</code></p></blockquote>
<blockquote></blockquote>
<p>and look for the logs under /var/log/syslog to troubleshoot any problems.</p>
<p>You can now connect to your new PPTP VPN server using the built-in pptp vpn client from any modern windows workstation (except probably vista that is broken by sp1) using the default connection settings.</p>
<blockquote>
<pre><code>
</code></pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://callsolutions.org/howto-debian-vpn-pptp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
