This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[node] | |
nickname = client | |
web.reveal_storage_furls = true | |
# use this addr/port in your webrowser to interact with your local tahoe-lafs gateway | |
web.port = tcp:7657:interface=127.0.0.1 | |
web.static = public_html | |
tub.location = client.fakelocation:1 | |
[client] | |
introducer.furl = pb://[email protected]:58086/introducer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: conf[space] -*- | |
# | |
# Configuration file for ferm(1). | |
# | |
# IPv4 | |
domain ip { | |
table filter { | |
chain INPUT { | |
policy DROP; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
friends_shared URI:DIR2-RO:4hnsmpmtt6bsvaringrr64jykm:3bardkdce373o7qhlmqqk7qllboxztsvmfggesyo2fnnjidnnbtq | |
http://zy2w6qd4jhqfi7eh.onion/uri/URI%3ADIR2-RO%3A4hnsmpmtt6bsvaringrr64jykm%3A3bardkdce373o7qhlmqqk7qllboxztsvmfggesyo2fnnjidnnbtq/ | |
URI:DIR2:rav6x72e35vnzdhvdnre62v5xy:3bardkdce373o7qhlmqqk7qllboxztsvmfggesyo2fnnjidnnbtq |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat <<EOT>mirror.list | |
set base_path /home/amnesia/apt-mirror | |
set defaultarch amd64 | |
set nthreads 20 | |
set _tilde 0 | |
deb http://deb.mempo.org/debian wheezy main | |
clean http://deb.mempo.org/debian | |
EOT | |
sudo apt-get update | |
sudo apt-get install apt-mirror |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[node] | |
nickname = noname | |
web.reveal_storage_furls = true | |
web.static = public_html | |
web.port = tcp:3456:interface=127.0.0.1 | |
tub.port = tcp:37020:interface=127.0.0.1 | |
# XXX | |
tub.location = myCuteKittyCat.onion:43000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Crypto party Tahoe-LAFS Onion Grid Workshop | |
or "How you and your friends can setup an onion | |
grid for file sharing and file storage." | |
Note: This guide is written with the assumption that the user's local workstation | |
runs Tails with a persistent encrypted volume AND | |
the remote Tahoe-LAFS storage servers run Debian Wheezy Linux. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Basic Backup Strategy for Tails users using Tahoe-LAFS | |
requirements: | |
- Tails 1.1 or higher | |
- connecting information to a Tahoe-LAFS grid: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[node] | |
nickname = client | |
web.reveal_storage_furls = true | |
web.port = tcp:3456:interface=127.0.0.1 | |
web.static = public_html | |
tub.location = client.fakelocation:1 | |
[client] | |
introducer.furl = pb://MyTubID@tor:myHiddenService.onion:HiddenPort/introducer | |
shares.needed = 3 | |
shares.happy = 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
step 1: | |
get the latest stable python virtualenv and cryptographically verify it. | |
save it to: ~/Persistent/virtualenv-x.xx.x/ | |
step 2: | |
create a virtual env to run ansible: | |
Persistent/virtualenv-x.xx.x/virtualenv.py --system-site-packages Persistent/virtenv-ansible | |
New python executable in Persistent/virtenv-ansible/bin/python | |
Installing setuptools, pip...done. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd projects/virtualenv-1.11.1/ | |
./virtualenv.py ~/virtenv-endpoints-test | |
. ~/virtenv-endpoints-test/bin/activate | |
usewithtor pip install twisted | |
cd ~/projects | |
git clone https://github.com/david415/txsocksx.git | |
cd txsocksx | |
git checkout endpoint_parsers | |
usewithtor python setup.py install | |
cd examples # CWD is now /home/human/projects/txsocksx/examples |