Difference between revisions of "Tor"

From lightningwiki.net
Jump to navigation Jump to search
m
Line 1: Line 1:
{{Stub}}
Lightning should work over tor.
Lightning should work over tor.


[[c-lightning]] and [[LND]] both current support Tor  
[[c-lightning]] and [[LND]] both current support Tor  


[https://github.com/lightningnetwork/lnd/blob/d98d4523e10426c4ce097ecc7ec1ba199a331c60/docs/configuring_tor.md LND instructions]
* [https://github.com/lightningnetwork/lnd/blob/d98d4523e10426c4ce097ecc7ec1ba199a331c60/docs/configuring_tor.md LND instructions]
 
* [https://github.com/ElementsProject/lightning/blob/master/doc/TOR.md c-lightning instructions]
[https://github.com/ElementsProject/lightning/blob/master/doc/TOR.md c-lightning instructions]
* [https://medium.com/@meeDamian/c-lightning-node-on-rbp3-b950660fb835 c-lightning tutorial with tor]
 
[https://medium.com/@meeDamian/c-lightning-node-on-rbp3-b950660fb835 c-lightning tutorial with tor]


= Additional helpful configuration information =
= Additional helpful configuration information =
 
* [https://bitcoin.stackexchange.com/questions/70069/how-can-i-setup-bitcoin-to-be-anonymous-with-tor how can I setup bitcoin to be anonymous with tor?]
[https://bitcoin.stackexchange.com/questions/70069/how-can-i-setup-bitcoin-to-be-anonymous-with-tor how can I setup bitcoin to be anonymous with tor?]
* [https://www.reddit.com/r/Bitcoin/comments/5b9z9f/bitcoind_over_tor_a_miniguide_from_personal/ Bitcoin over tor ]
 
[https://www.reddit.com/r/Bitcoin/comments/5b9z9f/bitcoind_over_tor_a_miniguide_from_personal/ Bitcoin over tor ]


= LND =  
= LND =  
Give parameters here. Do you know them? Please add!
Give parameters here. Do you know them? Please add!
./lnd -h
<pre>./lnd -h


Tor:
Tor:
Line 31: Line 25:
       --tor.v3                                                Use a v3 onion service to listen for inbound connections
       --tor.v3                                                Use a v3 onion service to listen for inbound connections
       --tor.privatekeypath=                                  The path to the private key of the onion service being created (default: /Users/user/Library/Application Support/Lnd/onion_private_key)
       --tor.privatekeypath=                                  The path to the private key of the onion service being created (default: /Users/user/Library/Application Support/Lnd/onion_private_key)
</pre>


= c-lightning parameters =
= c-lightning parameters =
{{TODO|Add info on c-lightning}}

Revision as of 10:09, 17 January 2019

Lightning should work over tor.

c-lightning and LND both current support Tor

Additional helpful configuration information

LND

Give parameters here. Do you know them? Please add!

./lnd -h

Tor:
      --tor.active                                            Allow outbound and inbound connections to be routed through Tor
      --tor.socks=                                            The port that Tor's exposed SOCKS5 proxy is listening on -- NOTE port must be between 1024 and 65535 (default: 9050)

      --tor.dns=                                              The DNS server as IP:PORT that Tor will use for SRV queries - NOTE must have TCP resolution enabled (default: soa.nodes.lightning.directory:53)
      --tor.streamisolation                                   Enable Tor stream isolation by randomizing user credentials for each connection.
      --tor.controlport=                                      The port that Tor is listening on for Tor control connections -- NOTE port must be between 1024 and 65535 (default: 9051)
      --tor.v2                                                Automatically set up a v2 onion service to listen for inbound connections
      --tor.v3                                                Use a v3 onion service to listen for inbound connections
      --tor.privatekeypath=                                   The path to the private key of the onion service being created (default: /Users/user/Library/Application Support/Lnd/onion_private_key)

c-lightning parameters

Template:TODO