As usual problem!

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
nuke
Posts: 3
Joined: Mon Jun 02, 2008 9:21 pm

As usual problem!

Post by nuke »

Hello everyone...

My problem is when am making services anope
./services
SHows!
*** LocOps -- Link denied for services.myservername.net(unknown@myservername) (No link block named 'services.myservername.net') [@myservername.4520]
Well, I tried many times...followed many pages...

Services Conf

IRCDModule "unreal32"
RemoteServer myservername 7020 "mypass"
ServerName "services.myservername.net"
Numeric 250

IRCd conf

Code: Select all

/* NOTE ON SSL PORTS: SSL ports are pretty non-standardized,
 * besides numerous high-SSL ports, some people say you should run
 * it at 994 because that's the official SSL port.. but that
 * requires root! Besides, port 194 is the official irc port and
 * have you ever seen an ircd running on that?
 * So, our suggestion is to use port 6697 for SSL, this is used by
 * quite some networks and is recognized by for example StunTour.
 * You are free to open up as many SSL ports as you want, but
 * by (also) using 6697 you help the world standardize a bit ;).
 */
 listen         myserverip:7020
{
	options
	{
		ssl;
		clientsonly;
	};
};

listen         myserverip:7020;
listen         myserverip:6667;
/*
link services.myservername.net
{
username *;
hostname myserverip;
bind-ip *;
port 7020;
hub *;
password-connect "serverpass";
password-receive "serverpass";
class servers;
options {
/* Note: You should not use autoconnect when linking services */
autoconnect;
ssl;
};

Code: Select all

ulines {
	services.servername.net;
};

Code: Select all

set { services-server "services.MYservername.net"; };
My server name = i put it to avoid spamming.

Could any one please tell me how to fix it?
Jobe
Official supporter
Posts: 1180
Joined: Wed May 03, 2006 7:09 pm
Location: United Kingdom

Re: As usual problem!

Post by Jobe »

Your link block is within comments block (starts with "/*") You will need to MOVE the link block OUTSIDE of the /* and */ that surround it.

Also I'm going to assume you know full well that you should NOT use the option "autoconnect" with services, as you should have read the line above it (which you included in your paste of the link block):
/* Note: You should not use autoconnect when linking services */
And as for the "ssl" option of the link block, I hope you're aware that most services packages do NOT support SSL so the "ssl" option should be removed too.

As for your listen blocks. You can't have 2 for the same port on the same IP, but you have 2 for port 7020. On top of that you told Services to connect to port 7020, which according to your listen blocks, the first one, is CLIENTSONLY meaning servers CANNOT connect. Add to that the "ssl" option in that listen block, again most services packages do NOT support SSL so CANNOT connect to ports with the "ssl" option.

And then services-server in the set block, like ulines are case sensitive, so they must match EXACTLY with the services server name in your services config, where "Services" is NOT the same as "services"
Your IP: Image
Your Country: Image
nuke
Posts: 3
Joined: Mon Jun 02, 2008 9:21 pm

Re: As usual problem!

Post by nuke »

Thank u very much!
Fixed....

but.. i tried to make all bots join my channel
can i make all bots on botserv join my channel better than one :)
and even nickserv/operserv..etc....?
Jobe
Official supporter
Posts: 1180
Joined: Wed May 03, 2006 7:09 pm
Location: United Kingdom

Re: As usual problem!

Post by Jobe »

Firstly, in the case of Anope, one and ONLY one BotServ bot is meant to be in any channel at any given time.

To get all bots to join a channel would require a 3rd party module. And there are consequences too, such as A) Anope does NOT know the bots are in the channel which therefore leaves your network de-synced, and B) unless it's an oper only channel, users will not like a channel with only bots that don't talk, so it's not wise to use them to make a channel "look full/busy"
Your IP: Image
Your Country: Image
nuke
Posts: 3
Joined: Mon Jun 02, 2008 9:21 pm

Re: As usual problem!

Post by nuke »

Am admin and i wanna all bots join opers channel thats it
i just thought if there a command or raw...
i think there's a command "allbotjoin" such this but its not on my services :(
so any way to make them all join.
Locked