diff options
author | dEBRUYNE-1 <dEBRUYNE-1@users.noreply.github.com> | 2016-05-11 17:43:40 +0200 |
---|---|---|
committer | dEBRUYNE-1 <dEBRUYNE-1@users.noreply.github.com> | 2016-05-11 17:43:40 +0200 |
commit | bc99b5d1daf8f3d0b383a47e975914d1d81edc5a (patch) | |
tree | 8a5d921beb74ad25ae26f9de624500ca8543226d /README.md | |
parent | Merge pull request #826 (diff) | |
download | monero-bc99b5d1daf8f3d0b383a47e975914d1d81edc5a.tar.xz |
Update README with TAILS instructions
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -195,7 +195,15 @@ See README.i18n While Monero isn't made to integrate with Tor, it can be used wrapped with torsocks, if you add --p2p-bind-ip 127.0.0.1 to the bitmonerod command line. You also want to set DNS requests to go over TCP, so they'll be routed through Tor, by setting DNS_PUBLIC=tcp. You may also disable IGD (UPnP port forwarding negotiation), which is pointless with Tor. To allow local connections from the wallet, add TORSOCKS_ALLOW_INBOUND=1. Example: -DNS_PUBLIC=tcp TORSOCKS_ALLOW_INBOUND=1 torsocks bitmonerod --p2p-bind-ip 127.0.0.1 --no-igd +`DNS_PUBLIC=tcp TORSOCKS_ALLOW_INBOUND=1 torsocks bitmonerod --p2p-bind-ip 127.0.0.1 --no-igd` + +TAILS ships with a very restrictive set of firewall rules. Therefore, you need to add a rule to allow this connection too, in addition to telling torsocks to allow inbound connections. Full example: + +`sudo iptables -I OUTPUT 2 -p tcp -d 127.0.0.1 -m tcp --dport 18081 -j ACCEPT` + +`DNS_PUBLIC=tcp TORSOCKS_ALLOW_INBOUND=1 torsocks ./bitmonerod --p2p-bind-ip 127.0.0.1 --no-igd --rpc-bind-ip 127.0.0.1 --data-dir /home/amnesia/Persistent/your/directory/to/the/blockchain` + +`./simplewallet` ## Using readline |