blob: 4743a5cd2cb5b56f84a1588b985215b5c999e945 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# 80 KiB/s is about the actual upload speed, because I would like to contribute
# back but I don't want to make China ISP unhappy about me uploading too much
limit-rate-up=80
# https://monerodocs.org/interacting/monero-config-file/#syntax
# need =1 for options without value
p2p-use-ipv6=1
# Bind to wireguard ips, I want monerod only using network through wireguard,
# otherwise China ISP will think I mine crypto and will be unhappy. But
# p2p-bin-ip and p2pbind-ipv6-address seems do not work, see vq buts note. But
# I still have those configs here because what if they somehow fixed it in the
# future.
# Can be tested with sth. like `sudo tcpdump -i wlp2s0 port 18080`
p2p-bind-ip=10.0.0.1
p2p-bind-ipv6-address=fdc9:281f:04d7:9ee9::1
|