summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLassulus <Lassulus@googlemail.com>2011-05-26 15:53:04 +0200
committerLassulus <Lassulus@googlemail.com>2011-05-26 15:53:04 +0200
commitdc4e9b72f168a7c29703cbb36990887926f63d5a (patch)
tree834286b6e372d026b809098b93ffd5fa252c5d29
parentea45809be2ee536e08a891d6063e43319e9e7364 (diff)
parent506c0bbf04754c58574badc4113e0502da29e782 (diff)
Merge branch 'master' of github.com:miefda/retiolum
-rwxr-xr-x.scripts/adv_graphgen/parse.py12
-rw-r--r--.scripts/autostart/Makefile3
-rwxr-xr-x[-rw-r--r--].scripts/autostart/tinc2
-rw-r--r--Lassulus1
-rw-r--r--alphalabs1
-rw-r--r--miefda9011
-rw-r--r--supernode2
7 files changed, 17 insertions, 5 deletions
diff --git a/.scripts/adv_graphgen/parse.py b/.scripts/adv_graphgen/parse.py
index 27fe3a99..04b42c33 100755
--- a/.scripts/adv_graphgen/parse.py
+++ b/.scripts/adv_graphgen/parse.py
@@ -1,4 +1,5 @@
#!/usr/bin/python2
+# -*- coding: utf8 -*-
import sys
""" TODO: Refactoring needed to pull the edges out of the node structures again,
@@ -35,23 +36,28 @@ def merge_edges(nodes):
def write_node(k,v):
- """ writes a single node and its edges """
+ """ writes a single node and its edges
+ edges are weightet with the informations inside the nodes provided by
+ tinc
+ """
node = " "+k+"[label=\""
node += k+"\\l"
node += "external:"+v['external-ip']+":"+v['external-port']+"\\l"
if v.has_key('num_conns'):
node += "Num Connects:"+str(v['num_conns'])+"\\l"
- node += "internal:"+v['internal-ip']+"\\l\""
+
+ node += "internal:"+v.get('internal-ip','¯\\\\(°_o)/¯')+"\\l\""
if v['external-ip'] == "MYSELF":
node += ",fillcolor=steelblue1"
node += "]"
print (node)
for con in v.get('to',[]):
- edge = " "+k+ " -> " +con['name'] + "[weight="+str(10/float(con['weight']))
+ edge = " "+k+ " -> " +con['name'] + "[weight="+str(float(con['weight']))
if con.get('bidirectional',False):
edge += ",dir=both"
edge += "]"
print edge
+
def parse_input():
nodes={}
for line in sys.stdin:
diff --git a/.scripts/autostart/Makefile b/.scripts/autostart/Makefile
index 58bfc0c5..7ca589e1 100644
--- a/.scripts/autostart/Makefile
+++ b/.scripts/autostart/Makefile
@@ -1,7 +1,8 @@
-INIT_FOLDER=/etc/rc.d
+INIT_FOLDER=/etc/init.d
.phony: all
all:
#TODO change the tinc file before writing
cp tinc $(INIT_FOLDER)/tinc
+ chmod +x $(INIT_FOLDER)/tinc
echo "retiolum" > /etc/tinc/nets.boot
update-rc.d tinc defaults
diff --git a/.scripts/autostart/tinc b/.scripts/autostart/tinc
index 06d10403..12e77d6a 100644..100755
--- a/.scripts/autostart/tinc
+++ b/.scripts/autostart/tinc
@@ -25,6 +25,8 @@ TCONF="/etc/tinc"
NETSFILE="$TCONF/nets.boot"
NETS=""
+modprobe tun
+
test -f $DAEMON || exit 0
[ -r /etc/default/tinc ] && . /etc/default/tinc
diff --git a/Lassulus b/Lassulus
index 803fe696..5d2c3adc 100644
--- a/Lassulus
+++ b/Lassulus
@@ -1,3 +1,4 @@
+Address = 10.9.9.74
Subnet = 10.7.7.11
Subnet = 42:23:5:11:0:0:0:0/64
-----BEGIN RSA PUBLIC KEY-----
diff --git a/alphalabs b/alphalabs
index 6aea1dec..80c0ef6e 100644
--- a/alphalabs
+++ b/alphalabs
@@ -1,3 +1,4 @@
+Address = 10.9.9.10
Subnet = 10.7.7.10
-----BEGIN RSA PUBLIC KEY-----
MIIBCgKCAQEAvUAbMmmOFn+4kOvJAvmi0R/XCQa1YBlkjUvC6Pmt0Q8gV1DodXjB
diff --git a/miefda901 b/miefda901
index a1b59a29..b9a9156a 100644
--- a/miefda901
+++ b/miefda901
@@ -1,4 +1,5 @@
Subnet = 10.7.7.22
+Subnet = 42:23:5:22:0:0:0:0/64
-----BEGIN RSA PUBLIC KEY-----
MIIBCgKCAQEApbEYmHf0vEDYa/2aVvWVxEGgC+JJlXcArdxkQooSIpnZfSAfsH0S
MFz8v7UkM7EJSwDsFWf+gxyoAORdFpdQm+XQoDqWVZ1e0isYtNluP2C/51s3lu2F
diff --git a/supernode b/supernode
index 6444fe99..f730ca86 100644
--- a/supernode
+++ b/supernode
@@ -1,6 +1,6 @@
Address = miefda.org
Subnet = 10.7.7.1
-
+Subnet = 42:23:5:1:0:0:0:0/64
-----BEGIN RSA PUBLIC KEY-----
MIIBCgKCAQEAr3DlBmQxP9UTBCkohK8FCYSk2td4Ov5lQYvC3Adx04lEWHfp+0nP
sShYqqN9Aj3iCqj/DHx5jGuSqjyTmmFWIOMM9IwKMo2Oiz/PcBM56N6gzIHuR5wj