aboutsummaryrefslogtreecommitdiff
path: root/doc/reduce-traffic.md
diff options
context:
space:
mode:
authorJonas Schnelli <dev@jonasschnelli.ch>2015-11-13 21:12:23 +0100
committerJonas Schnelli <dev@jonasschnelli.ch>2015-11-14 08:42:59 +0100
commite495ed5f08fa9b62174c7f8f4636e0e5f63a1f4d (patch)
treee48fafce353f8f4b3ce4c7c6b41279ec03257904 /doc/reduce-traffic.md
parent5760749ed8e244e0befab12434b1d8c9f6c8e90e (diff)
downloadbitcoin-e495ed5f08fa9b62174c7f8f4636e0e5f63a1f4d.tar.xz
add documentation for exluding whitelistes peer from maxuploadtarget
Diffstat (limited to 'doc/reduce-traffic.md')
-rw-r--r--doc/reduce-traffic.md38
1 files changed, 38 insertions, 0 deletions
diff --git a/doc/reduce-traffic.md b/doc/reduce-traffic.md
new file mode 100644
index 0000000000..2d86588eb2
--- /dev/null
+++ b/doc/reduce-traffic.md
@@ -0,0 +1,38 @@
+Reduce Traffic
+==============
+
+Some node operators need to deal with bandwidth caps imposed by their ISPs.
+
+By default, bitcoin-core allows up to 125 connections to different peers, 8 of
+which are outbound. You can therefore, have at most 117 inbound connections.
+
+The default settings can result in relatively significant traffic consumption.
+
+Ways to reduce traffic:
+
+## 1. Use `-maxuploadtarget=<MiB per day>`
+
+A major component of the traffic is caused by serving historic blocks to other nodes
+during the initial blocks download phase (syncing up a new node).
+This option can be specified in MiB per day and is turned off by default.
+This is *not* a hard limit; only a threshold to minimize the outbound
+traffic. When the limit is about to be reached, the uploaded data is cut by no
+longer serving historic blocks (blocks older than one week).
+Keep in mind that new nodes require other nodes that are willing to serve
+historic blocks. **The recommended minimum is 144 blocks per day (max. 144MB
+per day)**
+
+Whitelisted peers will never be disconnected, although their traffic counts for
+calculating the target.
+
+## 2. Disable "listening" (`-listen=0`)
+
+Disabling listening will result in fewer nodes connected (remember the maximum of 8
+outbound peers). Fewer nodes will result in less traffic usage as you are relaying
+blocks and transactions to fewer nodes.
+
+## 3. Reduce maximum connections (`-maxconnections=<num>`)
+
+Reducing the maximum connected nodes to a minimum could be desirable if traffic
+limits are tiny. Keep in mind that bitcoin's trustless model works best if you are
+connected to a handful of nodes.