diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-08-11 17:00:21 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-11 17:00:21 +0300 |
commit | 22f450fb08a58d446335d210f6a46da330de8625 (patch) | |
tree | 662c0a9e751d196672baa64dbf83694376ce0a33 | |
parent | 0452e5c5f9dd7b166c8fe681c6fe64c03740716a (diff) | |
download | serverdata-22f450fb08a58d446335d210f6a46da330de8625.tar.gz serverdata-22f450fb08a58d446335d210f6a46da330de8625.tar.bz2 serverdata-22f450fb08a58d446335d210f6a46da330de8625.tar.xz serverdata-22f450fb08a58d446335d210f6a46da330de8625.zip |
Remove subnet.conf and add network.conf
-rw-r--r-- | conf/network.conf | 37 | ||||
-rw-r--r-- | conf/subnet.conf | 7 |
2 files changed, 37 insertions, 7 deletions
diff --git a/conf/network.conf b/conf/network.conf new file mode 100644 index 00000000..b355acb2 --- /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", +) diff --git a/conf/subnet.conf b/conf/subnet.conf deleted file mode 100644 index 5f2c75a9..00000000 --- a/conf/subnet.conf +++ /dev/null @@ -1,7 +0,0 @@ -// Subnet support file -// Format is: -// subnet: net-submask:char_ip:map_ip -// you can add more than one subnet - -subnet: 255.0.0.0:127.0.0.1:127.0.0.1 -subnet: 0.0.0.0:127.0.0.1:127.0.0.1 |