I've never attempted to link 2 servers together on a network (other than services).
In this post, let's just say I own domain.com, and am linking server1.domain.com (1.2.3.4.5), and server2.domain.com (6.7.8.9.10) I also have services.domain.com (2.4.6.8.10)
I've setup irc.domain.com with 2 DNS A records pointing to the IP's of server1 and server2.
I've got the servers linked, but I'm not sure if this is the best method, and also, users of server1 can't see server2 in /map (but they can see the client still), and visa versa.
Server1's links;
Code: Select all
link services.domain.com {
username *;
hostname 2.4.6.8.10;
bind-ip *;
port 8000;
hub *;
password-connect "servicesPass";
password-receive "servicesPass";
class servers;
options {
autoconnect;
zip;
};
};
link server2.domain.com {
username *;
hostname 5.6.7.8.9.10;
bind-ip *;
port 8000;
leaf *;
password-connect "passHere";
password-receive "passHere";
class servers;
options {
autoconnect;
zip;
nodnscache;
};
};
Code: Select all
link server1.domain.com {
username *;
hostname 1.2.3.4.5;
bind-ip *;
port 8000;
hub *;
password-connect "passHere";
password-receive "passHere";
class servers;
options {
autoconnect;
zip;
nodnscache;
};
};

