| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- ## List of channels to autojoin for new client connections
- autojoin = [
- "#dev",
- "#memes",
- "#philosophy",
- "#markets",
- "#math",
- "#random",
- "#lunardao",
- ]
- ## P2P network settings
- [net]
- # Magic Bytes to distinguish the p2p network
- magic_bytes = [251, 229, 199, 181]
- ## Path to the P2P datastore
- p2p_datastore = "~/.local/share/darkfi/darkirc/p2p"
- ## Path to a configured hostlist for saving known peers
- hostlist = "~/.local/share/darkfi/darkirc/p2p_hostlist.tsv"
- ## connection settings
- outbound_peer_discovery_cooloff_time = 60
- ## Outbound connection slots
- outbound_connections = 8
- ## Inbound connection slots
- inbound_connections = 64
- ## Whitelisted transports for outbound connections
- active_profiles = ["tcp+tls", "tor", "i2p"]
- ## Transports to be mixed
- mixed_profiles = []
- [net.profiles."tcp+tls"]
- ## Seed nodes to connect to
- seeds = ["tcp+tls://lilith0.dark.fi:9600", "tcp+tls://lilith1.dark.fi:9600"]
- ## P2P accept addresses
- inbound = ["tcp+tls://0.0.0.0:9600", "tcp+tls://[::]:9600"]
- ## Addresses we want to advertise to peers
- external_addrs = ["tcp+tls://MY_IP_V4:9600", "tcp+tls://MY_IP_V6:9600", "tcp+tls://my.resolvable.address:9600"]
- [net.profiles."tor"]
- ## Seed nodes to connect to
- seeds = [
- "tor://wgxxaifz5gv4iggcflyl67lgmsihffs6bbwobqah4np52t3y3olrnpid.onion:9601",
- "tor://inx5s3pdzddvgb5ii3oydutmbvw6fvor3oqu65wtxl3pyevtvrdn4had.onion:9601",
- ]
- ## P2P accept addresses
- inbound = ["tcp://127.0.0.1:9601"]
- ## Addresses we want to advertise to peers
- external_addrs = ["tor://youraddress.onion:9600"]
- [net.profiles."i2p"]
- ## Seed nodes to connect to
- seeds = [
- ##TODO: replace with an official seed address
- "i2p://6l2rdfriixo2nh5pr5bt555lyz56qox2ikzia4kuzm4okje7gtmq.b32.i2p:9600"
- ]
- ## Manual peers to connect to
- #peers = []
- ## P2P accept addresses
- inbound = ["tcp://127.0.0.1:9602"]
- ## Addresses we want to advertise to peers
- external_addrs = ["i2p://youraddress.b32.i2p:9600"]
|