Having Trouble With Anope

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
onesikgypo
Posts: 18
Joined: Mon Oct 03, 2005 12:45 pm

Having Trouble With Anope

Post by onesikgypo »

Hi, im havin trouble gettin my anope to connect successfully, can u look at the link bits in my log and tell me if their ok?

unrealircd.conf

Code: Select all

class           servers
{
	pingfreq 90;
	maxclients 10;		/* Max servers we can have linked at a time */
	sendq 1000000;
	connfreq 100; /* How many seconds between each connection attempt */
};

Code: Select all

listen         *:6669
{
	options
	{
		serversonly;
	};
};

Code: Select all

link Services.onesikgypo.servebeer.com
	{
	username *;
	hostname 127.0.0.1;
	bind-ip *;
	port 6669;
	pasword-connect "passwordwashere";
	password-retrieve "passwordwashere";
	leaf *;
	class serversonly;
};
Services.conf

Code: Select all

IRCDModule "unreal32"

Code: Select all

RemoteServer    localhost 6669 "mcdabigjog"

Code: Select all

ServerName  "Services.onesikgypo.servebeer.com"
can someone help us out?
onesikgypo
Posts: 18
Joined: Mon Oct 03, 2005 12:45 pm

Post by onesikgypo »

well i sort of made a break through

in my unrealirc.conf i made change to the linkage

Code: Select all

        link Services.onesikgypo.servebeer.com
        {
            username        *;
            hostname        127.0.0.1;
            bind-ip         *;
            port            6669;
            hub             *;
            password-connect "passwashere";
            password-receive "passwashere";
            class           servers;
        };
But i am now getting 3 errors, 2 from unreal and 1 from ircop

the errors from unreal are as followed and i dont know where to look to fix it:

Code: Select all

[08:00:41] -irc.onesikgypo.com- *** Notice -- error: unrealircd.conf:69: illegal me::name, must be fully qualified hostname
-
[08:00:41] -irc.onesikgypo.com- *** Notice -- error: unrealircd.conf:69: illegal me::name contains invalid character(s) [only a-z, 0-9, _, -, . are allowed]
and ircop is giving me this error

Code: Select all

[07:53:55] -irc.onesikgypo.com- *** LocOps -- Link denied for Services.onesikgypo.servebeer.com([email protected]) (No link block named 'Services.onesikgypo.servebeer.com') [@127.0.0.1.2891]
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Post by Stealth »

[08:00:41] -irc.onesikgypo.com- *** Notice -- error: unrealircd.conf:69: illegal me::name, must be fully qualified hostname
-
[08:00:41] -irc.onesikgypo.com- *** Notice -- error: unrealircd.conf:69: illegal me::name contains invalid character(s) [only a-z, 0-9, _, -, . are allowed]
READ the error, FIX the error, REHASH and be happy.

EDIT: If you don't know how to find where that error is, I suggest you read the docs. Reading ALL THE DOCS is required before posting your stupidity on the forums. If you don't know where "me::name" is, you didn't read the docs. Read section 4.0 and 4.1: http://www.vulnscan.org/UnrealIrcd/unre ... alircdconf
Locked