From f823e79979ea5c15531bd92ad93f1d47f734d2e1 Mon Sep 17 00:00:00 2001 From: Tim Leonard Date: Wed, 2 Feb 2022 22:17:36 +0000 Subject: [PATCH 1/2] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index b2602816..5c22da9b 100644 --- a/README.md +++ b/README.md @@ -69,6 +69,8 @@ If the server is being hosted by yourself and the above doesn't solve your issue Ensure these ports are forwarded on your router, both for tcp and udp: 50000, 50010, 50050, 50020 +Ensure you have allowed the server access through the windows defender firewall, you can set rules here: Start Bar -> Windows Administrative Tools -> Windows Defender Firewall with Advanced Security -> Inbound/Output Rules + Its possible you don't have the configuration for the server setup correctly. After running the server once make sure to open the configuration file (Saved/config.json) and make sure its setup correctly (it will attempt to autoconfigure itself, but may get incorrect values if you have multiple network adapters). The most critical settings to get correct are ServerHostname and ServerPrivateHostname, these should be set to your WAN IP (the one you get from sites like https://whatismyip.com), and your LAN IP (the one you get from running ipconfig) respectively. If you are using LAN emulation software (eg. hamachi) you will need to set these to the appropriate hamachi IP. ## What do all the properties in the config file mean? From 45a59651bc4cc8f9e5427d956596297e1127d44a Mon Sep 17 00:00:00 2001 From: Tim Leonard Date: Wed, 2 Feb 2022 22:18:01 +0000 Subject: [PATCH 2/2] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5c22da9b..44b1e3bd 100644 --- a/README.md +++ b/README.md @@ -67,11 +67,11 @@ There are a few different causes of this, the simplest one is to make sure you'r If the server is being hosted by yourself and the above doesn't solve your issue, try these steps: -Ensure these ports are forwarded on your router, both for tcp and udp: 50000, 50010, 50050, 50020 +1. Ensure these ports are forwarded on your router, both for tcp and udp: 50000, 50010, 50050, 50020 -Ensure you have allowed the server access through the windows defender firewall, you can set rules here: Start Bar -> Windows Administrative Tools -> Windows Defender Firewall with Advanced Security -> Inbound/Output Rules +2. Ensure you have allowed the server access through the windows defender firewall, you can set rules here: Start Bar -> Windows Administrative Tools -> Windows Defender Firewall with Advanced Security -> Inbound/Output Rules -Its possible you don't have the configuration for the server setup correctly. After running the server once make sure to open the configuration file (Saved/config.json) and make sure its setup correctly (it will attempt to autoconfigure itself, but may get incorrect values if you have multiple network adapters). The most critical settings to get correct are ServerHostname and ServerPrivateHostname, these should be set to your WAN IP (the one you get from sites like https://whatismyip.com), and your LAN IP (the one you get from running ipconfig) respectively. If you are using LAN emulation software (eg. hamachi) you will need to set these to the appropriate hamachi IP. +3. Its possible you don't have the configuration for the server setup correctly. After running the server once make sure to open the configuration file (Saved/config.json) and make sure its setup correctly (it will attempt to autoconfigure itself, but may get incorrect values if you have multiple network adapters). The most critical settings to get correct are ServerHostname and ServerPrivateHostname, these should be set to your WAN IP (the one you get from sites like https://whatismyip.com), and your LAN IP (the one you get from running ipconfig) respectively. If you are using LAN emulation software (eg. hamachi) you will need to set these to the appropriate hamachi IP. ## What do all the properties in the config file mean? The settings are all documented in the source code in this file, in future I'll write some more detailed documentation.