Sfoglia il codice sorgente

book: minor addresses updates

aggstam 4 anni fa
parent
commit
5e6cf3f9d3
3 ha cambiato i file con 16 aggiunte e 14 eliminazioni
  1. 7 7
      doc/src/misc/ircd.md
  2. 7 7
      doc/src/misc/tau.md
  3. 2 0
      doc/src/portranges.md

+ 7 - 7
doc/src/misc/ircd.md

@@ -95,8 +95,8 @@ The first time you run the program, a config file will be created in
 config file to configure a seed node:
 config file to configure a seed node:
 
 
 ```toml
 ```toml
-## P2P accept address
-inbound="127.0.0.1:11001" 
+## P2P accept addresses
+inbound=["127.0.0.1:11001"]
 ```
 ```
 
 
 Note that the above config doesn't specify an external address since
 Note that the above config doesn't specify an external address since
@@ -110,17 +110,17 @@ the network during the bootstrapping phase.
 This is a node accepting inbound connections on the network but which
 This is a node accepting inbound connections on the network but which
 is not making any outbound connections.
 is not making any outbound connections.
 
 
-The external address is important and must be correct.
+The external addresses are important and must be correct.
 
 
 To run an inbound node, your config file must contain the following
 To run an inbound node, your config file must contain the following
 info:
 info:
 		
 		
 ```toml
 ```toml
-## P2P accept address
-inbound="127.0.0.1:11002" 
+## P2P accept addresses
+inbound=["127.0.0.1:11002"]
 
 
-## P2P external address
-external_addr="127.0.0.1:11002"
+## P2P external addresses
+external_addr=["127.0.0.1:11002"]
 
 
 ## Seed nodes to connect to 
 ## Seed nodes to connect to 
 seeds=["127.0.0.1:11001"]
 seeds=["127.0.0.1:11001"]

+ 7 - 7
doc/src/misc/tau.md

@@ -24,8 +24,8 @@ addresses from the seed node and disconnects straight after receiving them.
 
 
 	in config file:
 	in config file:
 
 
-		## P2P accept address
-		inbound="127.0.0.1:11001" 
+		## P2P accept addresses
+		inbound=["127.0.0.1:11001"] 
 
 
 Note that the above config doesn't specify an external address since the
 Note that the above config doesn't specify an external address since the
 seed node shouldn't be advertised in the list of connectable nodes. The seed
 seed node shouldn't be advertised in the list of connectable nodes. The seed
@@ -37,15 +37,15 @@ new nodes to discover other nodes in the network during the bootstrapping phase.
 This is a node accepting inbound connections on the network but which is not
 This is a node accepting inbound connections on the network but which is not
 making any outbound connections.
 making any outbound connections.
 
 
-The external address is important and must be correct.
+The external addresses are important and must be correct.
 
 
 	in config file:
 	in config file:
 		
 		
-		## P2P accept address
-		inbound="127.0.0.1:11002" 
+		## P2P accept addresses
+		inbound=["127.0.0.1:11002"]
 		
 		
-		## P2P external address
-		external_addr="127.0.0.1:11002"
+		## P2P external addresses
+		external_addr=["127.0.0.1:11002"]
 
 
 		## Seed nodes to connect to 
 		## Seed nodes to connect to 
 		seeds=["127.0.0.1:11001"]
 		seeds=["127.0.0.1:11001"]

+ 2 - 0
doc/src/portranges.md

@@ -2,7 +2,9 @@
 
 
 Standard port ranges used by DarkFi.
 Standard port ranges used by DarkFi.
 
 
+* lilith: 25551
 * darkfid-sync: 33032
 * darkfid-sync: 33032
 * darkfid-consensus: 33033
 * darkfid-consensus: 33033
 * ircd: 25551
 * ircd: 25551
 * taud: 23331
 * taud: 23331
+* darkwikid: 24331