From 6c78c3c6ca74462e51526474e7d685a1f28a9150 Mon Sep 17 00:00:00 2001 From: d3v11 Date: Tue, 1 Nov 2011 12:33:03 -0400 Subject: Updated index.pod for a2.o --- doc/www.anonet2.org/public_pod/index.pod | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/www.anonet2.org/public_pod/index.pod b/doc/www.anonet2.org/public_pod/index.pod index 85edb59..a59d1d7 100644 --- a/doc/www.anonet2.org/public_pod/index.pod +++ b/doc/www.anonet2.org/public_pod/index.pod @@ -61,6 +61,8 @@ Z<> --> + + -- cgit v1.2.3 From 87c2bc6e77fa3ce26eabeec12a6b7caf1956a9bf Mon Sep 17 00:00:00 2001 From: Nick Date: Wed, 2 Nov 2011 20:49:25 +0000 Subject: welcome /HackInt :-) --- db/udpmsg4/HackInt/@/.gitignore | 1 + db/udpmsg4/HackInt/@/default.key | 1 + db/udpmsg4/HackInt/@/owner | 1 + db/udpmsg4/HackInt/@/path | 1 + 4 files changed, 4 insertions(+) create mode 100644 db/udpmsg4/HackInt/@/.gitignore create mode 100644 db/udpmsg4/HackInt/@/default.key create mode 100644 db/udpmsg4/HackInt/@/owner create mode 100644 db/udpmsg4/HackInt/@/path diff --git a/db/udpmsg4/HackInt/@/.gitignore b/db/udpmsg4/HackInt/@/.gitignore new file mode 100644 index 0000000..b19a917 --- /dev/null +++ b/db/udpmsg4/HackInt/@/.gitignore @@ -0,0 +1 @@ +temp.keys diff --git a/db/udpmsg4/HackInt/@/default.key b/db/udpmsg4/HackInt/@/default.key new file mode 100644 index 0000000..a3df7d7 --- /dev/null +++ b/db/udpmsg4/HackInt/@/default.key @@ -0,0 +1 @@ +46db3ee63c69084e330fd40c7295bd98a09e3d053f3995aeb2c93e256a71f14c diff --git a/db/udpmsg4/HackInt/@/owner b/db/udpmsg4/HackInt/@/owner new file mode 100644 index 0000000..095936c --- /dev/null +++ b/db/udpmsg4/HackInt/@/owner @@ -0,0 +1 @@ +somerandomnick diff --git a/db/udpmsg4/HackInt/@/path b/db/udpmsg4/HackInt/@/path new file mode 100644 index 0000000..8bbef09 --- /dev/null +++ b/db/udpmsg4/HackInt/@/path @@ -0,0 +1 @@ +/HackInt -- cgit v1.2.3 From db55e231c7de43312d1dabe73c0f567795b4194e Mon Sep 17 00:00:00 2001 From: d3v11 Date: Wed, 2 Nov 2011 22:04:50 -0400 Subject: Fixed Tor2DNS --- contrib/tor2dns/tor2dns/README | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/contrib/tor2dns/tor2dns/README b/contrib/tor2dns/tor2dns/README index 4379a98..5194c76 100644 --- a/contrib/tor2dns/tor2dns/README +++ b/contrib/tor2dns/tor2dns/README @@ -23,21 +23,10 @@ echo 'new dns link >>> http://'`cat /var/lib/tor/tor2dns/hostname`':8053' UPDATE: -# pull a copy using tor -usewithtor wget http://nbafkr7odek2wh6r.onion/peer2anonet.tgz - # pull a copy from AnoNet2 -wget http://d3v11.ano/peer2anonet.tgz - - -POST INSTALL: - You will want to make sure port fowarding is turned on, on - port 8053 of your router, you may also need to adjust your - firewall. you can test for success by opening your browser - with tor enabled and going to the link given @ the end of - your installation. :-) enjoy. +wget http://d3v11.ano/tor2dns.tgz NOTE: On some systems /var/lib/tor/tor2dns will need a special owner like "debian-tor". If tor2dns fails for you please troubleshoot - your logs, port fowarding, etc. + your logs. -- cgit v1.2.3 From 31aa0f9bb8466d43930128170a87b647c9d53dd2 Mon Sep 17 00:00:00 2001 From: d3v11 Date: Wed, 2 Nov 2011 23:34:38 -0400 Subject: Peer2AnoNet updated --- contrib/peer2anonet/peer2anonet | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/contrib/peer2anonet/peer2anonet b/contrib/peer2anonet/peer2anonet index 64af216..f64a07b 100644 --- a/contrib/peer2anonet/peer2anonet +++ b/contrib/peer2anonet/peer2anonet @@ -136,7 +136,15 @@ mkdir -p /services/"$PEERNAME" ######################################################################### # Create files to configure the new peering session: echo "#!/bin/sh +# uncomment if your peer has a dynamic IP +# #export REMOTE_FLOAT=1 + +# uncomment for debugging. you'll need to use ./run to view output instead +# of svc -u /service/ +# +#export DEBUG=1 + export REMOTE_ADDRESS=$REMOTEIP export REMOTE_PORT=$PEERPORT export LOCAL_PORT=$ADDPORT @@ -144,6 +152,15 @@ export PRIVATE_KEY=\"\$(cat seckey)\" export PUBLIC_KEY=$PUBKEY export TUN_MODE=1 export INTERFACE=ppp-$PEERNAME + +# uncomment if you want to nuke your default gateway and configure +# routes only to peers through IcannNet. If any of your peers use +# dynamic IP's or you use Tor or i2p then this is probably NOT a +# good idea. +# +#route del default gw `ip route show | grep default | cut -d' ' -f 3` +#route add $REMOTE_ADDRESS gw `ip route show | grep default | cut -d' ' -f 3 + ( sleep 5; ip addr add $P2A_IP peer $PEERIP/32 dev \$INTERFACE scope link ip addr add $P2A_ROUTE/32 dev \$INTERFACE scope global @@ -161,8 +178,8 @@ echo 'Secret Key Goes Here!' > "/services/$PEERNAME/seckey" echo "peer2anonet: New peering session configured. Please place your secret key in: /services/$PEERNAME/seckey -To allow remote floating: -uncomment REMOTE_FLOAT=1 in /services/$PEERNAME/run" +Some additional options are available in /services/$PEERNAME/run +Please read the comments in the file for details." -- cgit v1.2.3 From 06c7e29cb8008b697463f02d693826f64643499f Mon Sep 17 00:00:00 2001 From: d3v11 Date: Thu, 3 Nov 2011 14:13:00 -0400 Subject: Peer2AnoNet updated: made changes to ./run configuration and included better documentation. --- contrib/peer2anonet/peer2anonet | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/contrib/peer2anonet/peer2anonet b/contrib/peer2anonet/peer2anonet index f64a07b..2416d74 100644 --- a/contrib/peer2anonet/peer2anonet +++ b/contrib/peer2anonet/peer2anonet @@ -156,10 +156,13 @@ export INTERFACE=ppp-$PEERNAME # uncomment if you want to nuke your default gateway and configure # routes only to peers through IcannNet. If any of your peers use # dynamic IP's or you use Tor or i2p then this is probably NOT a -# good idea. +# good idea. You may need to modify the DEFAULT_ROUTE code below. +# If you run into problems with this please email d3v11@d3v11.ano +# so I can create a patch. # -#route del default gw `ip route show | grep default | cut -d' ' -f 3` -#route add $REMOTE_ADDRESS gw `ip route show | grep default | cut -d' ' -f 3 +#DEFAULT_ROUTE=`ip route show | grep default | cut -d' ' -f 3` +#route del default gw $DEFAULT_ROUTE +#route add $REMOTE_ADDRESS gw $DEFAULT_ROUTE ( sleep 5; ip addr add $P2A_IP peer $PEERIP/32 dev \$INTERFACE scope link -- cgit v1.2.3 From 8ebb4c96fa73fd490aff71076da273214200d5ee Mon Sep 17 00:00:00 2001 From: d3v11 Date: Thu, 3 Nov 2011 19:35:29 -0400 Subject: Peer2AnoNet bug fixed with run script, ping hack --- contrib/peer2anonet/peer2anonet | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/contrib/peer2anonet/peer2anonet b/contrib/peer2anonet/peer2anonet index 2416d74..a09d42c 100644 --- a/contrib/peer2anonet/peer2anonet +++ b/contrib/peer2anonet/peer2anonet @@ -168,7 +168,7 @@ export INTERFACE=ppp-$PEERNAME ip addr add $P2A_IP peer $PEERIP/32 dev \$INTERFACE scope link ip addr add $P2A_ROUTE/32 dev \$INTERFACE scope global ip link set dev \$INTERFACE up - ping -c 1 -I $INTERFACE -r -w 5 + ping -c 1 -I \$INTERFACE -r -w 5 ) & exec /usr/sbin/quicktun.nacltai" > /services/"$PEERNAME"/run chmod +x /services/"$PEERNAME"/run @@ -182,7 +182,8 @@ echo "peer2anonet: New peering session configured. Please place your secret key in: /services/$PEERNAME/seckey Some additional options are available in /services/$PEERNAME/run -Please read the comments in the file for details." +Please read the comments in the file for details. You may need to +restart the bird daemon. ie, svc -t /service/bird " -- cgit v1.2.3 From b793e8463cdaec932d3de4e52514cc2f2aeb4fc3 Mon Sep 17 00:00:00 2001 From: d3v11 Date: Thu, 3 Nov 2011 19:45:30 -0400 Subject: peer2anonet bug(s) fixed with new /service*//run configurations --- contrib/peer2anonet/peer2anonet | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/peer2anonet/peer2anonet b/contrib/peer2anonet/peer2anonet index a09d42c..9816304 100644 --- a/contrib/peer2anonet/peer2anonet +++ b/contrib/peer2anonet/peer2anonet @@ -160,9 +160,9 @@ export INTERFACE=ppp-$PEERNAME # If you run into problems with this please email d3v11@d3v11.ano # so I can create a patch. # -#DEFAULT_ROUTE=`ip route show | grep default | cut -d' ' -f 3` -#route del default gw $DEFAULT_ROUTE -#route add $REMOTE_ADDRESS gw $DEFAULT_ROUTE +#DEFAULT_ROUTE=\`ip route show | grep default | cut -d' ' -f 3\` +#route del default gw \$DEFAULT_ROUTE +#route add \$REMOTE_ADDRESS gw \$DEFAULT_ROUTE ( sleep 5; ip addr add $P2A_IP peer $PEERIP/32 dev \$INTERFACE scope link -- cgit v1.2.3 From cd1cd5834b7c5863ac1c462df68653d2fc70b9e0 Mon Sep 17 00:00:00 2001 From: d3v11 Date: Thu, 3 Nov 2011 20:07:15 -0400 Subject: peer2anonet pinghack bug fixed --- contrib/peer2anonet/peer2anonet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/peer2anonet/peer2anonet b/contrib/peer2anonet/peer2anonet index 9816304..1072659 100644 --- a/contrib/peer2anonet/peer2anonet +++ b/contrib/peer2anonet/peer2anonet @@ -168,7 +168,7 @@ export INTERFACE=ppp-$PEERNAME ip addr add $P2A_IP peer $PEERIP/32 dev \$INTERFACE scope link ip addr add $P2A_ROUTE/32 dev \$INTERFACE scope global ip link set dev \$INTERFACE up - ping -c 1 -I \$INTERFACE -r -w 5 + ping -c 1 -I \$INTERFACE $PEERIP -r -w 5 ) & exec /usr/sbin/quicktun.nacltai" > /services/"$PEERNAME"/run chmod +x /services/"$PEERNAME"/run -- cgit v1.2.3 From 8c4564fc4c6f9f94bd837af6ba5716d9b58c6f3a Mon Sep 17 00:00:00 2001 From: d3v11 Date: Thu, 3 Nov 2011 20:09:30 -0400 Subject: peer2anonet update --- contrib/peer2anonet/peer2anonet | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/peer2anonet/peer2anonet b/contrib/peer2anonet/peer2anonet index 1072659..4bbb164 100644 --- a/contrib/peer2anonet/peer2anonet +++ b/contrib/peer2anonet/peer2anonet @@ -168,6 +168,8 @@ export INTERFACE=ppp-$PEERNAME ip addr add $P2A_IP peer $PEERIP/32 dev \$INTERFACE scope link ip addr add $P2A_ROUTE/32 dev \$INTERFACE scope global ip link set dev \$INTERFACE up +# comment the following ping line to remove pinghack. this is a +# trick used to help bird connect. ping -c 1 -I \$INTERFACE $PEERIP -r -w 5 ) & exec /usr/sbin/quicktun.nacltai" > /services/"$PEERNAME"/run -- cgit v1.2.3 From ee0c10851ec8410ceceda6f6e576a493d0ac005c Mon Sep 17 00:00:00 2001 From: Obee Date: Fri, 4 Nov 2011 04:28:03 +0000 Subject: added as14 for Obee, added onet.ano and NS entry for it, added ip ranges 1.1.14.0 and 1.1.66.0 --- db/as/14/owner | 1 + db/dom/ano/onet/ns/ns.onet.ano | 1 + db/dom/ano/onet/owner | 1 + db/ip/01/01/0E/cidr | 1 + db/ip/01/01/0E/owner | 1 + db/ip/01/01/42/cidr | 1 + db/ip/01/01/42/owner | 1 + 7 files changed, 7 insertions(+) create mode 100644 db/as/14/owner create mode 100644 db/dom/ano/onet/ns/ns.onet.ano create mode 100644 db/dom/ano/onet/owner create mode 100644 db/ip/01/01/0E/cidr create mode 100644 db/ip/01/01/0E/owner create mode 100644 db/ip/01/01/42/cidr create mode 100644 db/ip/01/01/42/owner diff --git a/db/as/14/owner b/db/as/14/owner new file mode 100644 index 0000000..e8e4de5 --- /dev/null +++ b/db/as/14/owner @@ -0,0 +1 @@ +Obee diff --git a/db/dom/ano/onet/ns/ns.onet.ano b/db/dom/ano/onet/ns/ns.onet.ano new file mode 100644 index 0000000..b0b45e5 --- /dev/null +++ b/db/dom/ano/onet/ns/ns.onet.ano @@ -0,0 +1 @@ +1.1.12.2 diff --git a/db/dom/ano/onet/owner b/db/dom/ano/onet/owner new file mode 100644 index 0000000..e8e4de5 --- /dev/null +++ b/db/dom/ano/onet/owner @@ -0,0 +1 @@ +Obee diff --git a/db/ip/01/01/0E/cidr b/db/ip/01/01/0E/cidr new file mode 100644 index 0000000..aae6890 --- /dev/null +++ b/db/ip/01/01/0E/cidr @@ -0,0 +1 @@ +1.1.14.0/24 diff --git a/db/ip/01/01/0E/owner b/db/ip/01/01/0E/owner new file mode 100644 index 0000000..e8e4de5 --- /dev/null +++ b/db/ip/01/01/0E/owner @@ -0,0 +1 @@ +Obee diff --git a/db/ip/01/01/42/cidr b/db/ip/01/01/42/cidr new file mode 100644 index 0000000..15edfc0 --- /dev/null +++ b/db/ip/01/01/42/cidr @@ -0,0 +1 @@ +1.1.66.0/24 diff --git a/db/ip/01/01/42/owner b/db/ip/01/01/42/owner new file mode 100644 index 0000000..e8e4de5 --- /dev/null +++ b/db/ip/01/01/42/owner @@ -0,0 +1 @@ +Obee -- cgit v1.2.3 From a85c90927c7ee470bb6e0dc6da6809572752e7dc Mon Sep 17 00:00:00 2001 From: Richard Date: Fri, 4 Nov 2011 09:56:29 +0000 Subject: Added Richard --- db/as/125/owner | 1 + db/dom/ano/cotichopa/ns/a.ns.richard.ano | 1 + db/dom/ano/cotichopa/owner | 1 + db/ip/01/02/05/cidr | 1 + db/ip/01/02/05/owner | 1 + db/usr/Richard/git | 1 + 6 files changed, 6 insertions(+) create mode 100644 db/as/125/owner create mode 100644 db/dom/ano/cotichopa/ns/a.ns.richard.ano create mode 100644 db/dom/ano/cotichopa/owner create mode 100644 db/ip/01/02/05/cidr create mode 100644 db/ip/01/02/05/owner create mode 100644 db/usr/Richard/git diff --git a/db/as/125/owner b/db/as/125/owner new file mode 100644 index 0000000..577ea5f --- /dev/null +++ b/db/as/125/owner @@ -0,0 +1 @@ +Richard diff --git a/db/dom/ano/cotichopa/ns/a.ns.richard.ano b/db/dom/ano/cotichopa/ns/a.ns.richard.ano new file mode 100644 index 0000000..3bada59 --- /dev/null +++ b/db/dom/ano/cotichopa/ns/a.ns.richard.ano @@ -0,0 +1 @@ +1.2.5.2 diff --git a/db/dom/ano/cotichopa/owner b/db/dom/ano/cotichopa/owner new file mode 100644 index 0000000..577ea5f --- /dev/null +++ b/db/dom/ano/cotichopa/owner @@ -0,0 +1 @@ +Richard diff --git a/db/ip/01/02/05/cidr b/db/ip/01/02/05/cidr new file mode 100644 index 0000000..a397d39 --- /dev/null +++ b/db/ip/01/02/05/cidr @@ -0,0 +1 @@ +1.2.5.0/24 diff --git a/db/ip/01/02/05/owner b/db/ip/01/02/05/owner new file mode 100644 index 0000000..577ea5f --- /dev/null +++ b/db/ip/01/02/05/owner @@ -0,0 +1 @@ +Richard diff --git a/db/usr/Richard/git b/db/usr/Richard/git new file mode 100644 index 0000000..d8ae071 --- /dev/null +++ b/db/usr/Richard/git @@ -0,0 +1 @@ +git://1.2.5.1/ -- cgit v1.2.3 From 7f87e8d54622db2a8c3b95fbe2e9061a650c6436 Mon Sep 17 00:00:00 2001 From: Richard Date: Fri, 4 Nov 2011 10:45:58 +0000 Subject: Fix domain --- db/dom/ano/cotichopa/ns/a.ns.cotichopa.ano | 1 + db/dom/ano/cotichopa/ns/a.ns.richard.ano | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 db/dom/ano/cotichopa/ns/a.ns.cotichopa.ano delete mode 100644 db/dom/ano/cotichopa/ns/a.ns.richard.ano diff --git a/db/dom/ano/cotichopa/ns/a.ns.cotichopa.ano b/db/dom/ano/cotichopa/ns/a.ns.cotichopa.ano new file mode 100644 index 0000000..5734011 --- /dev/null +++ b/db/dom/ano/cotichopa/ns/a.ns.cotichopa.ano @@ -0,0 +1 @@ +1.2.5.31.2.5.3 diff --git a/db/dom/ano/cotichopa/ns/a.ns.richard.ano b/db/dom/ano/cotichopa/ns/a.ns.richard.ano deleted file mode 100644 index 3bada59..0000000 --- a/db/dom/ano/cotichopa/ns/a.ns.richard.ano +++ /dev/null @@ -1 +0,0 @@ -1.2.5.2 -- cgit v1.2.3 From 3f5b6a9ebe2caa16135a3655d2d9c4e87afa0fe3 Mon Sep 17 00:00:00 2001 From: Richard Date: Fri, 4 Nov 2011 10:58:10 +0000 Subject: Fix domain IP --- db/dom/ano/cotichopa/ns/a.ns.cotichopa.ano | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/dom/ano/cotichopa/ns/a.ns.cotichopa.ano b/db/dom/ano/cotichopa/ns/a.ns.cotichopa.ano index 5734011..4a57dff 100644 --- a/db/dom/ano/cotichopa/ns/a.ns.cotichopa.ano +++ b/db/dom/ano/cotichopa/ns/a.ns.cotichopa.ano @@ -1 +1 @@ -1.2.5.31.2.5.3 +1.2.5.3 -- cgit v1.2.3
IRCZ<>LL (Hidden IP, visible username and realname)
IRCZ<>LL (Visible IP, username and realname (warning!))
IRCZ<>LL (Hidden IP, username and realname, custom nickname)
IRCZ<>LL (Hidden IP, username and realname, custom nickname)