Roll Over HUBs?
Posted: Fri Mar 17, 2006 4:30 pm
How do I make it where if one of my hups drop the Leafs roll over to the next? Thanks...
Code: Select all
link hub.number.one
{
username *;
hostname 12.34.56.78;
bind-ip *;
port 7001;
leaf *;
password-connect "pass";
password-receive "pass";
class servers;
};
link hub.number.two
{
username *;
hostname 87.65.43.21;
bind-ip *;
port 7001;
leaf *;
password-connect "pass";
password-receive "pass";
class servers;
};
Code: Select all
link leaf.one
{
username *;
hostname 12.34.56.78;
bind-ip *;
port 7001;
hub *;
password-connect "pass";
password-receive "pass";
class servers;
options {
autoconnect;
};
};
Code: Select all
link leaf.one
{
username *;
hostname 12.34.56.78;
bind-ip *;
port 7001;
hub *;
password-connect "pass";
password-receive "pass";
class servers;
options {
autoconnect;
};
};