summaryrefslogtreecommitdiff
path: root/conf-tmpl
diff options
context:
space:
mode:
authorLuzZza <LuzZza@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-02-28 00:41:00 +0000
committerLuzZza <LuzZza@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-02-28 00:41:00 +0000
commit925b181de6d2c6a1ae3a1ed11d806bfe5785379c (patch)
treea51c061079047c5538014277b3ce53ae6745edc7 /conf-tmpl
parenta2a8fdca75fa5728be42f098b241cb391c21338b (diff)
downloadhercules-925b181de6d2c6a1ae3a1ed11d806bfe5785379c.tar.gz
hercules-925b181de6d2c6a1ae3a1ed11d806bfe5785379c.tar.bz2
hercules-925b181de6d2c6a1ae3a1ed11d806bfe5785379c.tar.xz
hercules-925b181de6d2c6a1ae3a1ed11d806bfe5785379c.zip
Rewrote LAN support code. Changed configuration file name lan_support.conf to subnet_athena.conf, changed it syntax.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5398 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'conf-tmpl')
-rw-r--r--conf-tmpl/lan_support.conf41
-rw-r--r--conf-tmpl/subnet_athena.conf6
2 files changed, 6 insertions, 41 deletions
diff --git a/conf-tmpl/lan_support.conf b/conf-tmpl/lan_support.conf
deleted file mode 100644
index 0f078352f..000000000
--- a/conf-tmpl/lan_support.conf
+++ /dev/null
@@ -1,41 +0,0 @@
-// Athena TXT version LAN configure file.
-// Support Client Connect to Local Area Network (LAN) IP Address Server.
-// put this fle into conf/ directory
-//
-// HOWTO:
-// To use this file, the login-server, char-server and map-server must be on the same subnetwork
-// (not necessary on the same computer). You can not use eAthena if you want to install the servers on 2 or more different LAN.
-//
-// First of all: you must configure your router to forward your WAN IP (one or more) and port (default: 6900, 6121 and 5121)
-// to the right concerned computer(s) (if default port, forward 6900 port to the (LAN IP) login-server, 6121 port to the (LAN IP) char-server, etc.).
-// After, set in char_athena.conf and map_athena.conf files the WAN IP and the right ports that you use.
-// Give to WAN people (client that are not on your LAN) your WAN IP to have an access to your server.
-// At this point, all players outside your LAN can access to your server(s).
-//
-// Now, you must parameter your LAN for the servers.
-// Set the LAN IP of the char-server and the map-server in this file (lan_char_ip and lan_map_ip).
-// Set the definition of your LAN in this file (subnet and subnetmask).
-// When you load/start login-server and char-server, read what the server displays, and specially the section ---LAN CONFIGURATION---.
-// If you see a warning or something not good, correct it.
-// Now LAN client can access to your server.
-//
-// NB: if you want that nobody of your LAN can access to your server, put 127.0.0.1 in IP and 255.255.255.255 for the mask.
-// So only the localhost computer would access to your server.
-// NB2: you can use LAN name if you have some instead of IP and/or mask.
-// NB3: if you want set your server only for LAN people, set your LAN IP instead of the WAN IP, and set 127.0.0.1/255.255.255.255 for the LAN IP.
-//
-// HOW THAT WORKS:
-// When someone tries to connect to your server(s), the login-server/char-server checks its IP with the LAN subnet (subnet and subnetmask parameters).
-// If it matches, the login-server sends the LAN IP of the char-server (lan_char_ip); and char-server do same for map-server (lan_map_ip).
-// If not, the login-server sends the WAN IP of the char-server that it have received (char_ip in char_athena.conf)
-// and the char-server sends the WAN IP of the map-server that it have received (map_ip in map_athena.conf)
-
-// put here the LAN IP of your char-server
-lan_char_ip: 127.0.0.1
-
-// put here the LAN IP of your map-server
-lan_map_ip: 127.0.0.1
-
-// put here the Subnet mask of your LAN
-subnet: 127.0.0.1
-subnetmask: 255.255.255.255
diff --git a/conf-tmpl/subnet_athena.conf b/conf-tmpl/subnet_athena.conf
new file mode 100644
index 000000000..39855d991
--- /dev/null
+++ b/conf-tmpl/subnet_athena.conf
@@ -0,0 +1,6 @@
+// Subnet support file
+// Format is:
+// subnet: subnet/mask:char_ip:map_ip
+// you can add more than one that line
+
+subnet: 127.0.0.1/255.255.255.0:127.0.0.1:127.0.0.1