View Single Post
  #8  
Old 12-01-2019, 07:07 AM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,333
Default

Referring to what I said earlier in this thread

Quote:
Originally Posted by Huppy View Post
Your server MUST use either 9000 or 9001 for world tcp/ip connections. If you use 9000 for telnet, you use 9001 for the other.
Some have used configurations like this (for example) :
Code:
"tcp" : {
                    "ip" : "192.168.0.3",
                    "port" : "9001"
               },
               "telnet" : {
                    "enabled" : "true",
                    "ip" : "0.0.0.0",
                    "port" : "9000"
               }
But I use this:
Code:
"tcp" : {
                    "ip" : "192.168.0.3",
                    "port" : "9000",
                    "telnet" : "disable"
__________________
Hanging out at Antonica.World
Reply With Quote