Skip to content

Commit

Permalink
Update networking.md with sample config (near#8837)
Browse files Browse the repository at this point in the history
Adds a sample config showing the snippets relevant to advanced networking configuration.
  • Loading branch information
saketh-are authored and nikurt committed Apr 5, 2023
1 parent 950e2da commit 1359eb6
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion docs/advanced_configuration/networking.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
This document describes the advanced network options that you can configure
by modifying the "network" section of your "config.json" file.
by modifying the "network" section of your "config.json" file:


```
{
// ...
"network": {
// ...
"public_addrs": [],
"allow_private_ip_in_public_addrs": false,
"experimental": {
"inbound_disabled": false,
"connect_only_to_boot_nodes": false,
"skip_sending_tombstones_seconds": 0,
"tier1_enable_inbound": true,
"tier1_enable_outbound": false,
"tier1_connect_interval": {
"secs": 60,
"nanos": 0
},
"tier1_new_connections_per_attempt": 50
}
},
// ...
}
```

### TIER1 network

Expand Down

0 comments on commit 1359eb6

Please sign in to comment.