Parcourir la source

book: minor addresses updates

aggstam il y a 4 ans
Parent
commit
5e6cf3f9d3
3 fichiers modifiés avec 16 ajouts et 14 suppressions
  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:
 
 ```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
@@ -110,17 +110,17 @@ the network during the bootstrapping phase.
 This is a node accepting inbound connections on the network but which
 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
 info:
 		
 ```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 
 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:
 
-		## 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
 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
 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:
 		
-		## 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 
 		seeds=["127.0.0.1:11001"]

+ 2 - 0
doc/src/portranges.md

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