You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Typically 30303 and 30304 are exposed to the internet to allow incoming peering connections. 9090 is exposed only internally for rpcdaemon or other connections, (e.g. rpcdaemon -> erigon)
Typically a sentry process will run one eth/xx protocl (e.g. eth/66) and will be exposed to the internet on 30303. Port 9091 is for internal gRCP connections (e.g erigon -> sentry)
285
+
286
+
#### Other ports
287
+
| Port | Protocol | Purpose | Expose |
288
+
|:----:|:--------:|:-------:|:-------:|
289
+
| 6060 | TCP | pprof | Private |
290
+
| 6060 | TCP | metrics | Private |
291
+
292
+
Optional flags can be enabled that enable pprof or metrics (or both) - however, they both run on 6060 by default, so you'll have to change one if you want to run both at the same time. use `--help` with the binary for more info.
293
+
294
+
Also, ports 9092 and 9093 are reserved for future use of the consensus engine and shapshot downloader for gRPC (work in progress).
295
+
260
296
Getting in touch
261
297
================
262
298
@@ -346,4 +382,3 @@ non-batched way.
346
382
### Filesystem's background features are expensive
347
383
348
384
For example: btrfs's autodefrag option - may increase write IO 100x times
rootCmd.PersistentFlags().StringSliceVar(&cfg.HttpVirtualHost, "http.vhosts", node.DefaultConfig.HTTPVirtualHosts, "Comma separated list of virtual hostnames from which to accept requests (server enforced). Accepts '*' wildcard.")
// RecvUploadHeadersMessage - sending headers - dedicated stream because headers propagation speed important for network health
41
+
// RecvUploadMessage - sending bodies/receipts - may be heavy, it's ok to not process this messages enough fast, it's also ok to drop some of this messages if can't process.
0 commit comments