Difference between revisions of "HamachiVPN"

From WebOS Internals
Jump to navigation Jump to search
(New page: = Hamachi VPN for Palm Pre = This document assumes you're familiar with the Hamachi VPN, specifically the linux version. It is geared towards a person wanting to "get it working" on the ...)
 
Line 5: Line 5:
 
Become root:
 
Become root:
  
[[code]]
+
<pre><nowiki>
 
sudo su
 
sudo su
[[/code]]
+
</pre></nowiki>
  
 
Make the filesystem writable:
 
Make the filesystem writable:
  
[[code]]
+
<pre><nowiki>
 
mount -o remount,rw /
 
mount -o remount,rw /
[[/code]]
+
</pre></nowiki>
  
 
Download the hamachi binary to your pre via wget:
 
Download the hamachi binary to your pre via wget:
[[code]]
+
<pre><nowiki>
 
cd /opt/share
 
cd /opt/share
 
wget http:''files.hamachi.cc/linux/nokia-770/hamachi-0.9.9.9-20-lnx-n770.tar.gz
 
wget http:''files.hamachi.cc/linux/nokia-770/hamachi-0.9.9.9-20-lnx-n770.tar.gz
[[/code]]
+
</pre></nowiki>
  
 
Unpack the archive:
 
Unpack the archive:
[[code]]
+
<pre><nowiki>
 
tar zxvf hamachi-0.9.9.9-20-lnx-n770.tar.gz
 
tar zxvf hamachi-0.9.9.9-20-lnx-n770.tar.gz
 
cd hamachi-n770-0.9.9.9-20
 
cd hamachi-n770-0.9.9.9-20
[[/code]]
+
</pre></nowiki>
  
 
Hamachi depends on libcrypto.so.0.9.7.  The Palm Pre has libcrypto.so.0.9.8 installed.  I made a symlink, and it worked.  So...
 
Hamachi depends on libcrypto.so.0.9.7.  The Palm Pre has libcrypto.so.0.9.8 installed.  I made a symlink, and it worked.  So...
[[code]]
+
<pre><nowiki>
 
ln -s /usr/lib/libcrypto.so.0.9.8 /usr/lib/libcrypto.so.0.9.7
 
ln -s /usr/lib/libcrypto.so.0.9.8 /usr/lib/libcrypto.so.0.9.7
[[/code]]
+
</pre></nowiki>
  
 
Edit the "install" script using your favorite editor (like vi) to change the installation locations.
 
Edit the "install" script using your favorite editor (like vi) to change the installation locations.
Line 37: Line 37:
 
I changed it to:
 
I changed it to:
  
[[code]]
+
<pre><nowiki>
 
HAMACHI_DST=/opt/bin
 
HAMACHI_DST=/opt/bin
 
TUNCFG_DST=/opt/sbin
 
TUNCFG_DST=/opt/sbin
Line 43: Line 43:
 
echo
 
echo
 
echo Copying hamachi into $HAMACHI_DST ..
 
echo Copying hamachi into $HAMACHI_DST ..
[[/code]]
+
</pre></nowiki>
  
 
Then follow the instructions in the README under Quick Start, but basically:
 
Then follow the instructions in the README under Quick Start, but basically:
  
[[code]]
+
<pre><nowiki>
 
./install
 
./install
 
/opt/sbin/tuncfg
 
/opt/sbin/tuncfg
Line 56: Line 56:
 
hamachi join <network>
 
hamachi join <network>
 
hamachi go-online
 
hamachi go-online
[[/code]]
+
</pre></nowiki>
  
 
== Hint ==
 
== Hint ==
Line 64: Line 64:
 
A simple sample entry in /etc/hosts which would allow you to access your server "beaker" at 5.1.2.3 would be:
 
A simple sample entry in /etc/hosts which would allow you to access your server "beaker" at 5.1.2.3 would be:
 
(Add your servers below the "castle" line.)
 
(Add your servers below the "castle" line.)
[[code]]
+
<pre><nowiki>
 
127.0.0.1      localhost.localdomain          localhost
 
127.0.0.1      localhost.localdomain          localhost
 
127.0.0.1 castle
 
127.0.0.1 castle
 
5.1.2.3 beaker
 
5.1.2.3 beaker
[[/code]]
+
</pre></nowiki>
  
 
When done, make the filesystem read-only again:
 
When done, make the filesystem read-only again:
[[code]]
+
<pre><nowiki>
 
mount -o remount,ro /
 
mount -o remount,ro /
[[/code]]
+
</pre></nowiki>
  
 
== Ping Test ==
 
== Ping Test ==
  
 
When you've got hamachi up, you can try pinging one of your servers.  
 
When you've got hamachi up, you can try pinging one of your servers.  
[[code]]
+
<pre><nowiki>
 
root@castle:/var/home/root# ping beaker
 
root@castle:/var/home/root# ping beaker
 
PING beaker (5.1.2.3): 56 data bytes
 
PING beaker (5.1.2.3): 56 data bytes
Line 85: Line 85:
 
64 bytes from 5.1.2.3: seq=2 ttl=128 time=56.976 ms
 
64 bytes from 5.1.2.3: seq=2 ttl=128 time=56.976 ms
 
64 bytes from 5.1.2.3: seq=3 ttl=128 time=74.249 ms
 
64 bytes from 5.1.2.3: seq=3 ttl=128 time=74.249 ms
[[/code]]
+
</pre></nowiki>
  
 
== Sleep/Wake and Battery Impact ==
 
== Sleep/Wake and Battery Impact ==
Line 99: Line 99:
 
Place the following script in /etc/event.d/hamachi
 
Place the following script in /etc/event.d/hamachi
  
[[code]]
+
<pre><nowiki>
 
description "Hamachi VPN for WebOS"
 
description "Hamachi VPN for WebOS"
 
version 1.0
 
version 1.0
Line 117: Line 117:
 
   /opt/sbin/tuncfg
 
   /opt/sbin/tuncfg
 
end script
 
end script
[[/code]]
+
</pre></nowiki>

Revision as of 02:14, 21 July 2009

Hamachi VPN for Palm Pre

This document assumes you're familiar with the Hamachi VPN, specifically the linux version. It is geared towards a person wanting to "get it working" on the Pre. If you're not familiar, there are endless Googlable web pages that describe running Hamachi on desktop linux systems you can use for reference.

Become root:

<nowiki>
sudo su

</nowiki>

Make the filesystem writable:

<nowiki>
mount -o remount,rw /

</nowiki>

Download the hamachi binary to your pre via wget:

<nowiki>
cd /opt/share
wget http:''files.hamachi.cc/linux/nokia-770/hamachi-0.9.9.9-20-lnx-n770.tar.gz

</nowiki>

Unpack the archive:

<nowiki>
tar zxvf hamachi-0.9.9.9-20-lnx-n770.tar.gz
cd hamachi-n770-0.9.9.9-20

</nowiki>

Hamachi depends on libcrypto.so.0.9.7. The Palm Pre has libcrypto.so.0.9.8 installed. I made a symlink, and it worked. So...

<nowiki>
ln -s /usr/lib/libcrypto.so.0.9.8 /usr/lib/libcrypto.so.0.9.7

</nowiki>

Edit the "install" script using your favorite editor (like vi) to change the installation locations. Also fix line 7 or you'll get an error.

I changed it to:

<nowiki>
HAMACHI_DST=/opt/bin
TUNCFG_DST=/opt/sbin

echo
echo Copying hamachi into $HAMACHI_DST ..

</nowiki>

Then follow the instructions in the README under Quick Start, but basically:

<nowiki>
./install
/opt/sbin/tuncfg
hamachi-init
hamachi start
hamachi login
hamachi set-nick <your nickname>
hamachi join <network>
hamachi go-online

</nowiki>

Hint

If you use Hamachi to connect to web services running on your machines at home or elsewhere, you might make your life easier by adding some entries to the /etc/hosts file. Then you can access your servers by name instead of having to use the Hamachi 5.x.x.x IP addresses.

A simple sample entry in /etc/hosts which would allow you to access your server "beaker" at 5.1.2.3 would be: (Add your servers below the "castle" line.)

<nowiki>
127.0.0.1       localhost.localdomain           localhost
127.0.0.1 castle
5.1.2.3 beaker

</nowiki>

When done, make the filesystem read-only again:

<nowiki>
mount -o remount,ro /

</nowiki>

Ping Test

When you've got hamachi up, you can try pinging one of your servers.

<nowiki>
root@castle:/var/home/root# ping beaker
PING beaker (5.1.2.3): 56 data bytes
64 bytes from 5.1.2.3: seq=0 ttl=128 time=5.493 ms
64 bytes from 5.1.2.3: seq=1 ttl=128 time=32.257 ms
64 bytes from 5.1.2.3: seq=2 ttl=128 time=56.976 ms
64 bytes from 5.1.2.3: seq=3 ttl=128 time=74.249 ms

</nowiki>

Sleep/Wake and Battery Impact

On first testing:

  • When the device went to sleep, the VPN went down.
  • When the device woke up, the VPN came back up and was pingable again.

This morning, while at my workstation, and with the Pre idle in my pocket, I noticed my Pre was available/pingable on Hamachi. I am not totally sure of what the long-term battery impact might be of running Hamachi on the Pre. I'm not yet sure if it keeps the device "awake" all the time, which clearly would drain the battery. I have push GMail IMAP going, so I assume there is some kind of connection either being periodically established or constantly maintained. But I don't know enough about the networking aspects to determine at this time whether running Hamachi all the time will negatively impact the battery. Feel free to message me if you learn anything.

Upstart script

This script will start Hamachi up after a reboot.

Place the following script in /etc/event.d/hamachi

<nowiki>
description "Hamachi VPN for WebOS"
version 1.0

# don't start until the WebOS finishes it's normal boot
# that way no delay is added to the GUI startup
start on stopped finish
stop on runlevel [!2]

console output

script
  /opt/bin/hamachi -c /var/home/root/.hamachi start 2>&1 /var/home/root/hamachi.log
end script

pre-start script
  /opt/sbin/tuncfg
end script

</nowiki>