linking services on the same computer

The UnrealIRCd team does not officially provide support for any services packages that you may be using or want to use. This forum is provided so the community can help each other with services issues.

Moderator: Supporters

Locked
Chimp
Posts: 15
Joined: Tue Oct 31, 2006 6:05 am

linking services on the same computer

Post by Chimp »

how would u like a services and a server if they are on the same windows xp computer?
Dukat
Posts: 1083
Joined: Tue Mar 16, 2004 5:44 pm
Location: Switzerland

Post by Dukat »

Uhm... use 127.0.0.1 ;p
If you don't make mistakes, you aren't really trying.
- Coleman Hawkins
Chimp
Posts: 15
Joined: Tue Oct 31, 2006 6:05 am

Post by Chimp »

[Mar 17 23:31:18 2007] FATAL: Can't connect to server: No such file or directory

is what i get from anope
seraphim
Posts: 36
Joined: Tue Apr 03, 2007 11:10 am

Post by seraphim »

Link Block at unrealircd.conf:
link services.abc.org
{
username *;
hostname *;
bind-ip *;
port 6667;
hub *;
password-connect "linkpass";
password-receive "linkpass";
class servers;
options {
zip;
};
};
Listen-Block for port 6667:
listen *:6667 {
options {
serversonly;
};
};
uLine for Services:
ulines {
services.abc.org;
};
Config at services.conf:
RemoteServer 127.0.0.1 6667 "linkpass"
ServerName "services.abc.org"
That should work ;-)
Locked