summaryrefslogtreecommitdiff
path: root/conf/network.conf
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-08-11 16:31:37 +0300
committerAndrei Karas <akaras@inbox.ru>2015-08-11 16:31:37 +0300
commit49211f9ea1ef985fd6c84cdf902b35dbb8d779a6 (patch)
tree34e7565fe11ead41519428143b3dc44b752b6e4b /conf/network.conf
parenta8e54e5688bd3d7b8e9073274ff611040c3178ab (diff)
parente13f1f782a9d8d25cc622d050644c7f29c1bfd5e (diff)
downloadhercules-49211f9ea1ef985fd6c84cdf902b35dbb8d779a6.tar.gz
hercules-49211f9ea1ef985fd6c84cdf902b35dbb8d779a6.tar.bz2
hercules-49211f9ea1ef985fd6c84cdf902b35dbb8d779a6.tar.xz
hercules-49211f9ea1ef985fd6c84cdf902b35dbb8d779a6.zip
Merge pull request #633 from HerculesWS/subnet
subnet.conf overhaul
Diffstat (limited to 'conf/network.conf')
-rw-r--r--conf/network.conf37
1 files changed, 37 insertions, 0 deletions
diff --git a/conf/network.conf b/conf/network.conf
new file mode 100644
index 000000000..b355acb25
--- /dev/null
+++ b/conf/network.conf
@@ -0,0 +1,37 @@
+// Network configuration file
+
+/*
+ * List here any LAN subnets this server is in.
+ * Example:
+ * - char- (or map-) server's IP in LAN is 192.168.0.10
+ * - Public IP is 198.51.100.37
+ * If the list contains "192.168.0.10:255.255.255.0", any clients connecting
+ * from the same 192.168.0.0/24 network will be presented with the LAN IP
+ * (192.168.0.10) in the server list, rather than the public IP (198.51.100.37).
+ */
+lan_subnets: (
+ "127.0.0.1:255.0.0.0",
+ // "192.168.1.1:255.255.255.0",
+)
+
+/*
+ * List here any IP ranges a char- or map-server can connect from.
+ * A wildcard of "0.0.0.0:0.0.0.0" means that server connections are allowed
+ * from ANY IP. (not recommended).
+ */
+allowed: (
+ "0.0.0.0:0.0.0.0",
+ // "127.0.0.1:255.0.0.0",
+)
+
+/*
+ * List here any IP ranges a char- or map-server can connect from. These ranges
+ * will also be excluded from the automatic ipban in casee of password failure.
+ * Any entry present in this list is also automatically included in the
+ * allowed IP list.
+ * Note: This may be a security threat. Only edit this list if you know what
+ * you are doing.
+ */
+trusted: (
+ "127.0.0.1:255.0.0.0",
+)