-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbitmonero.conf
99 lines (77 loc) · 4.56 KB
/
bitmonero.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# ~/.bitmonero/bitmonero.conf
#
# Configuration file for monerod. For all available options see the MoneroDocs:
# https://docs.getmonero.org/interacting/monerod-reference/
# # Optimized TOR/I2P Node Configuration
# # Created by xenu with help from ofrnxmr
#
#
#
#DEFAULT MODE will receive and send transactions over Tor or I2P
#STEALTH MODE will only broadcast transactions and will not allow any incoming connections.
#DEFAULT MODE helps the network, STEALTH MODE is ONLY for situations of heightened opsec.
#
#
#
#
#
# Data directory (blockchain db and indices)
#data-dir=~/.bitmonero # Blockchain storage location
# Optional pruning
#prune-blockchain=1 # Pruning saves 2/3 of disk space w/o degrading functionality but contributes less to the network
#sync-pruned-blocks=1 # Allow downloading pruned blocks instead of prunning them yourself
# Centralized services
check-updates=disabled # Do not check DNS TXT records for a new version
#enable-dns-blocklist=1 #DISREGARD, OUTDATED. Blocks known malicious nodes.
ban-list=ban_list.txt #Recent malicious node list approved by Monero Research Lab. Please download to help protect network.
#link to ban_list: https://github.com/Boog900/monero-ban-list/blob/main/ban_list.txt
# Log file
log-file=~/.bitmonero/bitmonero.log
log-level=0 # Minimal logs, WILL NOT log peers or wallets connecting
# P2P node
p2p-bind-ip=0.0.0.0 #DEFAULT
#p2p-bind-ip=127.0.0.1 #STEALTH MODE (localhost)
#p2p-bind-port=18080 #Bind to default port
p2p-use-ipv6=1 #Enable use of IPv6
p2p-bind-ipv6-address=:: #DEFAULT (IPv6)
#p2p-bind-ipv6-address=::1 #STEALTH MODE (IPv6) (localhost)
#p2p-bind-port-ipv6=18080 #Bind to default port
#no-igd=1 #STEALTH MODE, oops, was told I screwed this up in the video. Keep this commented out in DEFAULT MODE. Disables UPnP port mapping.
#proxy=127.0.0.1:9050 #STEALTH MODE
#hide-my-port=1 #STEALTH MODE
# RPC open node
#public-node=1 # Advertise to other users they can use this node for connecting their wallets
rpc-restricted-bind-ip=0.0.0.0 #DEFAULT, Bind to all interfaces (the Open Node)
#rpc-restricted-bind-ip=127.0.0.1 #STEALTH MODE, Bind to Localhost
rpc-restricted-bind-ipv6-address=:: #DEFAULT (IPv6), Bind to all interfaces (the Open Node)
#rpc-restricted-bind-ipv6-address=::1 #STEALTH MODE (IPv6), Bind to Localhost
rpc-restricted-bind-port=18089 # Bind to a new RESTICTED port (the Open Node)
#rpc-login=username:password #username:password
#NOTE: add rpc-node onion link here (keep the "#" at the start of the line)
# RPC TLS
rpc-ssl=autodetect #Use TLS if client wallet supports it (Default); A new certificate will be regenerated every restart unless next 2 lines are uncommented (options: enabled|autodetect|disabled)
#rpc-ssl-certificate=./path/to/cert #Use static cert (generate with monero-gen-ssl-cert)
#rpc-ssl-private-key=./path/to/cert_Private_key #use static cert private key (generated with monero-gen-ssl-cert)
# ZMQ
#zmq-rpc-bind-ip=127.0.0.1 # Default 127.0.0.1
#zmq-rpc-bind-port=18082 # Default 18082
zmq-pub=tcp://127.0.0.1:18083 # ZMQ pub
#no-zmq=1 # Disable ZMQ RPC server
# Mempool size
max-txpool-weight=2684354560 # Maximum unconfirmed transactions pool size in bytes (here ~2.5GB, default ~618MB)
# Database sync mode
#db-sync-mode=safe:sync # Slow but reliable db writes
# Network limits
out-peers=24 # Your node connects to this many peers. This will enable much faster sync and tx awareness; the default 8 is suboptimal nowadays
in-peers=48 # DEFAULT. The default is unlimited; we prefer to put a cap on this. This is how may nodes can connect to you.
#in-peers=0 # STEALTH MODE, comment out above line if using DEFAULT MODE
limit-rate-up=1048576 # 1048576 kB/s == 1GB/s; a raise from default 2048 kB/s; contribute more to p2p network
limit-rate-down=1048576 # 1048576 kB/s == 1GB/s; a raise from default 8192 kB/s; allow for faster initial sync
# Tor/I2P: broadcast transactions originating from connected wallets over Tor/I2P (does not concern relayed transactions)
#tx-proxy=i2p,127.0.0.1:4447,16.disable_noise # I2P
tx-proxy=tor,127.0.0.1:9050,16,disable_noise # Tor
# Tor/I2P: tell monerod your onion address so it can be advertised on P2P network
#anonymous-inbound=PASTE_YOUR_I2P_HOSTNAME,127.0.0.1:18085,64 # I2P
anonymous-inbound=YourLongV3OnionAddress.onion:18084,127.0.0.1:18084 # Tor-p2p
# Tor: be forgiving to connecting wallets
disable-rpc-ban=1