From 61eedfbeb76ec262e9c6e083c3584cc696429b54 Mon Sep 17 00:00:00 2001 From: MeshCollider Date: Tue, 30 Jan 2018 12:17:04 +1300 Subject: [PATCH] config: Clarify the default behaviour of externalip --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index f17988b8..9179e83b 100644 --- a/config.go +++ b/config.go @@ -158,7 +158,7 @@ type config struct { RESTListeners []string `long:"restlisten" description:"Add an interface/port to listen for REST connections"` Listeners []string `long:"listen" description:"Add an interface/port to listen for peer connections"` DisableListen bool `long:"nolisten" description:"Disable listening for incoming peer connections"` - ExternalIPs []string `long:"externalip" description:"Add an ip to the list of local addresses we claim to listen on to peers"` + ExternalIPs []string `long:"externalip" description:"Add an ip:port to the list of local addresses we claim to listen on to peers. If a port is not specified, the default (9735) will be used regardless of other parameters"` DebugLevel string `short:"d" long:"debuglevel" description:"Logging level for all subsystems {trace, debug, info, warn, error, critical} -- You may also specify =,=,... to set the log level for individual subsystems -- Use show to list available subsystems"`