<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.webos-internals.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Karry</id>
	<title>WebOS Internals - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.webos-internals.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Karry"/>
	<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/wiki/Special:Contributions/Karry"/>
	<updated>2026-04-26T10:08:22Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Application:PPTP_vpn&amp;diff=10174</id>
		<title>Application:PPTP vpn</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Application:PPTP_vpn&amp;diff=10174"/>
		<updated>2010-06-05T00:35:28Z</updated>

		<summary type="html">&lt;p&gt;Karry: add link to PreVPNc project&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary == &lt;br /&gt;
&lt;br /&gt;
PPTP is a VPN protocol used on Windows workstations. For more information see Wikipedia page [http://en.wikipedia.org/wiki/Point-to-Point_Tunneling_Protocol Wikipedia: PPTP]&lt;br /&gt;
&lt;br /&gt;
This tutorial describe howto connect your WebOS device to private network... For example, it can be use for access to internal tracking systems from your phone.&lt;br /&gt;
&lt;br /&gt;
'''Tip: If you want simple graphic interface for manage VPNs, you can try early snapshots of [https://code.google.com/p/prevpnc/ PreVPNc - webOS VPN manager]'''&lt;br /&gt;
&lt;br /&gt;
== What you need before ==&lt;br /&gt;
&lt;br /&gt;
* WebOS 1.4.1 with kernel 2.6.24-palm-joplin-3430&lt;br /&gt;
* [[Debian|Chrooted Debian]]&lt;br /&gt;
* Some experience with Linux&lt;br /&gt;
&lt;br /&gt;
== Installation == &lt;br /&gt;
&lt;br /&gt;
All comands type in chrooted Debian environment. &lt;br /&gt;
&lt;br /&gt;
* Install pptp daemon&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
apt-get install ppp&lt;br /&gt;
apt-get install pptp-linux&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Write your client configuration to '''/etc/ppp/peers/myvpn''' (I use configuration generated by [http://home.gna.org/kvpnc/en/index.html kvpnc] application...)&lt;br /&gt;
&lt;br /&gt;
For example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;apache&amp;quot;&amp;gt;&lt;br /&gt;
# name of tunnel, used to select lines in secrets files&lt;br /&gt;
remotename myvpn&lt;br /&gt;
&lt;br /&gt;
# name of tunnel, used to name /var/run pid file&lt;br /&gt;
linkname myvpn&lt;br /&gt;
&lt;br /&gt;
# name of tunnel, passed to ip-up scripts&lt;br /&gt;
ipparam myvpn&lt;br /&gt;
&lt;br /&gt;
# data stream for pppd to use&lt;br /&gt;
pty &amp;quot;/usr/sbin/pptp  --debug --loglevel 1 vpn.domain.com --nolaunchpppd&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# domain and username, used to select lines in secrets files&lt;br /&gt;
name &amp;quot;username&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# retrieve DNS from peer&lt;br /&gt;
usepeerdns&lt;br /&gt;
&lt;br /&gt;
# use MPPE encryption&lt;br /&gt;
require-mppe&lt;br /&gt;
nomppe-stateful&lt;br /&gt;
require-mppe-128&lt;br /&gt;
&lt;br /&gt;
# we do not require the peer to authenticate itself&lt;br /&gt;
noauth&lt;br /&gt;
&lt;br /&gt;
# enable debug&lt;br /&gt;
debug&lt;br /&gt;
&lt;br /&gt;
# we want to see what happen&lt;br /&gt;
nodetach&lt;br /&gt;
&lt;br /&gt;
# lock the device&lt;br /&gt;
lock&lt;br /&gt;
&lt;br /&gt;
# Use BSD compression&lt;br /&gt;
bsdcomp 9&lt;br /&gt;
&lt;br /&gt;
# Use deflate method&lt;br /&gt;
deflate 9&lt;br /&gt;
&lt;br /&gt;
# do not replace defaultroute&lt;br /&gt;
defaultroute&lt;br /&gt;
# userdefined MTU&lt;br /&gt;
mtu 1492&lt;br /&gt;
&lt;br /&gt;
# userdefined MRU&lt;br /&gt;
mru 1492&lt;br /&gt;
&lt;br /&gt;
# kernel level debug&lt;br /&gt;
kdebug 4&lt;br /&gt;
# refuse EAP&lt;br /&gt;
refuse-eap&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Download and unpack kernel modules and starting script&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
wget http://www.karry.wz.cz/download/webos-vpnc.tar.gz&lt;br /&gt;
zcat webos-vpnc.tar.gz | tar -xf - &lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Edit your user name, password and vpn route rules in script ./vpnc/vpn.sh&lt;br /&gt;
&lt;br /&gt;
== Start VPN == &lt;br /&gt;
* Run vpn.sh script...&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cd vpnc &lt;br /&gt;
./vpn.sh&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Warning! == &lt;br /&gt;
&lt;br /&gt;
Module ppp_mppe (Microsoft Point-to-Point Encryption support) is experimental in version 2.6.24!&lt;/div&gt;</summary>
		<author><name>Karry</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Portal:Linux_Applications_All&amp;diff=9568</id>
		<title>Portal:Linux Applications All</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Portal:Linux_Applications_All&amp;diff=9568"/>
		<updated>2010-04-10T11:14:28Z</updated>

		<summary type="html">&lt;p&gt;Karry: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__notoc__&amp;lt;!-- NOTE NOTE NOTE NOT  leave this comment at the top of the page. &lt;br /&gt;
&lt;br /&gt;
     copy this template and fill it in for each applicaton:  &lt;br /&gt;
&lt;br /&gt;
{{portal-application-item&lt;br /&gt;
|name=&lt;br /&gt;
|site=&lt;br /&gt;
|user=&lt;br /&gt;
|article=&lt;br /&gt;
|category=&lt;br /&gt;
|description=&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;{{portal-application-type&lt;br /&gt;
|type=Linux&lt;br /&gt;
|tag=All&lt;br /&gt;
|title=All applications are listed below no matter what category they fall under.&lt;br /&gt;
|list=&lt;br /&gt;
&lt;br /&gt;
{{portal-application-item&lt;br /&gt;
|name=Doom&lt;br /&gt;
|site=http://google.com/&lt;br /&gt;
|user=Unknown&lt;br /&gt;
|article=Doom&lt;br /&gt;
|category=Games&lt;br /&gt;
|description=Port of Doom by ID Software.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{portal-application-item&lt;br /&gt;
|name=F5VPN&lt;br /&gt;
|site=http://google.com/&lt;br /&gt;
|user=Unknown&lt;br /&gt;
|article=F5VPN&lt;br /&gt;
|category=Communication&lt;br /&gt;
|description=Empty&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{portal-application-item&lt;br /&gt;
|name=sdlVNC&lt;br /&gt;
|site=http://google.com/&lt;br /&gt;
|user=Unknown&lt;br /&gt;
|article=sdlVNC&lt;br /&gt;
|category=Communication&lt;br /&gt;
|description=VNC (SDL) client&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{portal-application-item&lt;br /&gt;
|name=Stella&lt;br /&gt;
|site=http://stella.sourceforge.net/&lt;br /&gt;
|user=debilater&lt;br /&gt;
|article=Stella&lt;br /&gt;
|category=Games&lt;br /&gt;
|description=Atari 2600 VCS Emulator&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{portal-application-item&lt;br /&gt;
|name=PPTP_vpn&lt;br /&gt;
|site=http://google.com/&lt;br /&gt;
|user=karry&lt;br /&gt;
|article=PPTP_vpn&lt;br /&gt;
|category=Communication&lt;br /&gt;
|description=This tutorial describe howto connect your WebOS device to private network...&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Karry</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Portal:Linux_Applications_Communications&amp;diff=9567</id>
		<title>Portal:Linux Applications Communications</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Portal:Linux_Applications_Communications&amp;diff=9567"/>
		<updated>2010-04-10T11:13:23Z</updated>

		<summary type="html">&lt;p&gt;Karry: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__notoc__&amp;lt;!-- NOTE NOTE NOTE NOT  leave this comment at the top of the page. &lt;br /&gt;
&lt;br /&gt;
     copy this template and fill it in for each applicaton:  &lt;br /&gt;
&lt;br /&gt;
{{portal-application-item&lt;br /&gt;
|name=&lt;br /&gt;
|site=&lt;br /&gt;
|user=&lt;br /&gt;
|article=&lt;br /&gt;
|category=&lt;br /&gt;
|description=&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;{{portal-application-type&lt;br /&gt;
|type=Linux&lt;br /&gt;
|tag=Communication&lt;br /&gt;
|title=List of applications that are for Communications.&lt;br /&gt;
|list=&lt;br /&gt;
&lt;br /&gt;
{{portal-application-item&lt;br /&gt;
|name=F5VPN&lt;br /&gt;
|site=http://google.com/&lt;br /&gt;
|user=JohnTomawski&lt;br /&gt;
|article=F5VPN&lt;br /&gt;
|category=Communication&lt;br /&gt;
|description=Empty&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{portal-application-item&lt;br /&gt;
|name=sdlVNC&lt;br /&gt;
|site=http://google.com/&lt;br /&gt;
|user=zonyl&lt;br /&gt;
|article=sdlVNC&lt;br /&gt;
|category=Communication&lt;br /&gt;
|description=Empty&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{portal-application-item&lt;br /&gt;
|name=PPTP_vpn&lt;br /&gt;
|site=http://google.com/&lt;br /&gt;
|user=karry&lt;br /&gt;
|article=PPTP_vpn&lt;br /&gt;
|category=Communication&lt;br /&gt;
|description=This tutorial describe howto connect your WebOS device to private network...&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Karry</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Application:PPTP_vpn&amp;diff=9566</id>
		<title>Application:PPTP vpn</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Application:PPTP_vpn&amp;diff=9566"/>
		<updated>2010-04-10T11:10:48Z</updated>

		<summary type="html">&lt;p&gt;Karry: initial instructions howto install and work with pptp vpn&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary == &lt;br /&gt;
&lt;br /&gt;
PPTP is a VPN protocol used on Windows workstations. For more information see Wikipedia page [http://en.wikipedia.org/wiki/Point-to-Point_Tunneling_Protocol Wikipedia: PPTP]&lt;br /&gt;
&lt;br /&gt;
This tutorial describe howto connect your WebOS device to private network... For example, it can be use for access to internal tracking systems from your phone.&lt;br /&gt;
&lt;br /&gt;
== What you need before ==&lt;br /&gt;
&lt;br /&gt;
* WebOS 1.4.1 with kernel 2.6.24-palm-joplin-3430&lt;br /&gt;
* [[Debian|Chrooted Debian]]&lt;br /&gt;
* Some experience with Linux&lt;br /&gt;
&lt;br /&gt;
== Installation == &lt;br /&gt;
&lt;br /&gt;
All comands type in chrooted Debian environment. &lt;br /&gt;
&lt;br /&gt;
* Install pptp daemon&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
apt-get install ppp&lt;br /&gt;
apt-get install pptp-linux&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Write your client configuration to '''/etc/ppp/peers/myvpn''' (I use configuration generated by [http://home.gna.org/kvpnc/en/index.html kvpnc] application...)&lt;br /&gt;
&lt;br /&gt;
For example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;apache&amp;quot;&amp;gt;&lt;br /&gt;
# name of tunnel, used to select lines in secrets files&lt;br /&gt;
remotename myvpn&lt;br /&gt;
&lt;br /&gt;
# name of tunnel, used to name /var/run pid file&lt;br /&gt;
linkname myvpn&lt;br /&gt;
&lt;br /&gt;
# name of tunnel, passed to ip-up scripts&lt;br /&gt;
ipparam myvpn&lt;br /&gt;
&lt;br /&gt;
# data stream for pppd to use&lt;br /&gt;
pty &amp;quot;/usr/sbin/pptp  --debug --loglevel 1 vpn.domain.com --nolaunchpppd&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# domain and username, used to select lines in secrets files&lt;br /&gt;
name &amp;quot;username&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# retrieve DNS from peer&lt;br /&gt;
usepeerdns&lt;br /&gt;
&lt;br /&gt;
# use MPPE encryption&lt;br /&gt;
require-mppe&lt;br /&gt;
nomppe-stateful&lt;br /&gt;
require-mppe-128&lt;br /&gt;
&lt;br /&gt;
# we do not require the peer to authenticate itself&lt;br /&gt;
noauth&lt;br /&gt;
&lt;br /&gt;
# enable debug&lt;br /&gt;
debug&lt;br /&gt;
&lt;br /&gt;
# we want to see what happen&lt;br /&gt;
nodetach&lt;br /&gt;
&lt;br /&gt;
# lock the device&lt;br /&gt;
lock&lt;br /&gt;
&lt;br /&gt;
# Use BSD compression&lt;br /&gt;
bsdcomp 9&lt;br /&gt;
&lt;br /&gt;
# Use deflate method&lt;br /&gt;
deflate 9&lt;br /&gt;
&lt;br /&gt;
# do not replace defaultroute&lt;br /&gt;
defaultroute&lt;br /&gt;
# userdefined MTU&lt;br /&gt;
mtu 1492&lt;br /&gt;
&lt;br /&gt;
# userdefined MRU&lt;br /&gt;
mru 1492&lt;br /&gt;
&lt;br /&gt;
# kernel level debug&lt;br /&gt;
kdebug 4&lt;br /&gt;
# refuse EAP&lt;br /&gt;
refuse-eap&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Download and unpack kernel modules and starting script&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
wget http://www.karry.wz.cz/download/webos-vpnc.tar.gz&lt;br /&gt;
zcat webos-vpnc.tar.gz | tar -xf - &lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Edit your user name, password and vpn route rules in script ./vpnc/vpn.sh&lt;br /&gt;
&lt;br /&gt;
== Start VPN == &lt;br /&gt;
* Run vpn.sh script...&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cd vpnc &lt;br /&gt;
./vpn.sh&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Warning! == &lt;br /&gt;
&lt;br /&gt;
Module ppp_mppe (Microsoft Point-to-Point Encryption support) is experimental in version 2.6.24!&lt;/div&gt;</summary>
		<author><name>Karry</name></author>
	</entry>
</feed>