From 07a8b637151684996cc7d05a925f67cd54df90e5 Mon Sep 17 00:00:00 2001 From: yyforyongyu Date: Mon, 27 Sep 2021 21:41:17 +0800 Subject: [PATCH] docs: add release note for tor controller --- docs/release-notes/release-notes-0.14.0.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/docs/release-notes/release-notes-0.14.0.md b/docs/release-notes/release-notes-0.14.0.md index 738aeaf08..7444dbba6 100644 --- a/docs/release-notes/release-notes-0.14.0.md +++ b/docs/release-notes/release-notes-0.14.0.md @@ -2,11 +2,32 @@ ## Networking & Tor +### Connectivity mode + A new flag has been added to enable a hybrid tor connectivity mode, where tor is only used for onion address connections, and clearnet for everything else. This new behavior can be added using the `tor.skip-proxy-for-clearnet-targets` flag. +### Onion service + +The Onion service created upon lnd startup is [now deleted during lnd shutdown +using `DEL_ONION`](https://github.com/lightningnetwork/lnd/pull/5794). + +### Tor connection + +A new health check, tor connection, [is added to lnd's liveness monitor upon +startup](https://github.com/lightningnetwork/lnd/pull/5794). This check will +ensure the liveness of the connection between the Tor daemon and lnd's tor +controller. To enable it, please use the following flags, +``` +healthcheck.torconnection.attempts=xxx +healthcheck.torconnection.timeout=xxx +healthcheck.torconnection.backoff=xxx +healthcheck.torconnection.internal=xxx +``` +Read more about the usage of the flags in the `sample-lnd.conf`. + ## LN Peer-to-Peer Netowrk ### Bitcoin Blockheaders in Ping Messages