diff options
author | Felix Richter <Felix.Richter@syntax-fehler.de> | 2011-05-29 12:08:13 +0200 |
---|---|---|
committer | Felix Richter <Felix.Richter@syntax-fehler.de> | 2011-05-29 12:08:13 +0200 |
commit | fd7da3898006ab8119d4b13b383cfa16c9403b18 (patch) | |
tree | f1e8d0fbcc7a121ccb2104200fae58f7e2afc3a0 /modules/retiolum/doc | |
parent | 5392511e88b7ca77b88b3d16f5991bde70823144 (diff) |
docu for cloudinstall,update graphgen
doc/install_dotcloud : updated docu, now specified which file to patch
doc/install_no.de : added docu for no.de cloud
parse.py : nodes which are down will not be written
auoupdate_cron.sh : contains what to do when the nodes should auto-update
Diffstat (limited to 'modules/retiolum/doc')
-rw-r--r-- | modules/retiolum/doc/install_dotcloud | 70 | ||||
-rw-r--r-- | modules/retiolum/doc/install_no.de | 4 |
2 files changed, 39 insertions, 35 deletions
diff --git a/modules/retiolum/doc/install_dotcloud b/modules/retiolum/doc/install_dotcloud index 29a13604..ab7206b1 100644 --- a/modules/retiolum/doc/install_dotcloud +++ b/modules/retiolum/doc/install_dotcloud @@ -26,23 +26,23 @@ You will gain a user shell with we will need to build some stuff in order to get a working copy of tinc. Everything needs to be done in userspace. <code> -mkdir build -cd build -curl http://www.openssl.org/source/openssl-1.0.0d.tar.gz | tar xz -cd openssl-1.0.0d -./config --prefix=$HOME/usr -fPIC -make install -cp lib* $HOME/usr/lib -cd .. + mkdir build + cd build + curl http://www.openssl.org/source/openssl-1.0.0d.tar.gz | tar xz + cd openssl-1.0.0d + ./config --prefix=$HOME/usr -fPIC + make install + cp lib* $HOME/usr/lib + cd .. -curl http://www.oberhumer.com/opensource/lzo/download/lzo-2.04.tar.gz | tar xz -cd lzo-2.04 -./configure --prefix=$HOME/usr + curl http://www.oberhumer.com/opensource/lzo/download/lzo-2.04.tar.gz | tar xz + cd lzo-2.04 + ./configure --prefix=$HOME/usr -curl http://zlib.net/zlib-1.2.5.tar.gz | tar xz -cd zlib-1.2.5/ -./configure --prefix=$HOME/usr -make install + curl http://zlib.net/zlib-1.2.5.tar.gz | tar xz + cd zlib-1.2.5/ + ./configure --prefix=$HOME/usr + make install </code> before building we need to patch the tinc daemon to run without the need for a tun device. @@ -51,35 +51,35 @@ tutorial is here: https://hackerspace.be/TincVPN <code> -curl http://www.tinc-vpn.org/packages/tinc-1.0.14.tar.gz | tar xz -cd tinc-1.0.14 -#apply patch here -./configure --prefix=$HOME/usr --sysconfdir=$HOME/etc \ ---localstatedir=$HOME/var --with-openssl=`pwd`/../openssl-1.0.0d/ \ ---with-openssl-lib=`pwd`/../openssl-1.0.0d/ \ ---with-zlib-include=$HOME/usr/include --with-zlib-lib=$HOME/usr/lib -make -make install -mkdir ~/etc -mkdir ~/var -cd ~/painload/modules/retiolum/scripts/tinc_setup -./install cloudkrebs 10.7.7.221 + curl http://www.tinc-vpn.org/packages/tinc-1.0.14.tar.gz | tar xz + cd tinc-1.0.14 + #replace the device.c with the patched (empty) one from the webpage + ./configure --prefix=$HOME/usr --sysconfdir=$HOME/etc \ + --localstatedir=$HOME/var --with-openssl=`pwd`/../openssl-1.0.0d/ \ + --with-openssl-lib=`pwd`/../openssl-1.0.0d/ \ + --with-zlib-include=$HOME/usr/include --with-zlib-lib=$HOME/usr/lib + make + make install + mkdir ~/etc + mkdir -p ~/var/run + cd ~/painload/modules/retiolum/scripts/tinc_setup + ./install cloudkrebs 10.7.7.221 </code> be sure to fix the portnumber in the generated host file and add your own address in hosts/cloudkrebs: <code> -Address = my.public.address -Port = 1655 + Address = my.public.address + Port = 1655 -PUBKEY + PUBKEY </code> also write the right in tinc.conf: <code> -Name = cloudkrebs + Name = cloudkrebs -Mode = switch -#device = ... -# no device :) + Mode = switch + #device = ... + # no device :) </code> diff --git a/modules/retiolum/doc/install_no.de b/modules/retiolum/doc/install_no.de new file mode 100644 index 00000000..a8b72a78 --- /dev/null +++ b/modules/retiolum/doc/install_no.de @@ -0,0 +1,4 @@ +ok, i tried to just do the same step i did in the other cloud service, but +it failed when trying to include tunnel headers.this is what to do: + +# add PATH_MAX to conf.c |