Page 1 of 1

Linking Services- Link denied

Posted: Sat Sep 24, 2005 8:34 am
by Stat
I am trying to link services to the hub. But I get "LocOps -- Link denied (Authentication failed [Bad password?]) [@127.0.0.1.4212]" when I try to connect it. I tried all options and checked the config.
I am using ssl for leafs
Unreal

Code: Select all

listen *:6667;
listen *:1278 
{
	options {ssl;};
};


link services.site.org
{
 username *;
 hostname 127.0.0.1;
 port *;        <--tried 6667 too
 bind-ip 127.0.0.1;
 password-connect "mypass";
 password-receive "mypass";
 class servers;
};

ulines 
{
services.site.org;
site.org;
hub.site.org;
};

set {
	network-name "Site";
	default-server "site.org";
	services-server "services.site.org";
	stats-server "stats.site.org";
........
.......

	hosts {
....
	};


Services

Code: Select all

RemoteServer    127.0.0.1 6667 "mypass"
.........
ServerName  "services.site.org"
ServerDesc  "Site"
ServiceUser "[email protected]"
NetworkDomain "site.org"
NetworkName "Site"

Posted: Sat Sep 24, 2005 12:54 pm
by Matridom
first, make a proper listen block

Code: Select all

listen          *:1278 {
        options {
                serversonly;
        };
};
servers and services are not designed to use the same port as clients.

then make sure you have a proper class

Code: Select all

class           servers
{
        pingfreq 60;
        maxclients 10;
        sendq 1000000;
        connfreq 300; 
};
then make sure your link blocks use the corret information

Posted: Sun Sep 25, 2005 4:17 am
by w00t
Matridom wrote:servers and services are not designed to use the same port as clients.
Actually, they can. It's probably not the best of ideas, but they can.