Anope IRC Services

Please login or register.

Login with username, password and session length
Advanced search  

News:

Pages: [1]   Go Down

Author Topic: Unreal and Anope  (Read 4868 times)

0 Members and 1 Guest are viewing this topic.

Austin

  • Guest
Unreal and Anope
« on: December 08, 2006, 01:22:48 AM »

I'm trying to use Unreal with Anope services, But i'm getting a Link error.

[Dec 07 19:48:32 2006] Error: Your IRCD's link block may not setup correctly, please check unrealircd.conf



Unreal:

Listen Block
listen         *:6697
{
   options
   {
      standard;
   };
};

listen         *:8067;
listen         *:6667;


Link Block for services
link            192.168.1.3
{
   username   *;
   hostname    192.168.1.3;
   bind-ip    *;
   port       6667;
   hub             *;
   password-connect "f00Ness";
   password-receive "f00Ness";
   class           servers;
      };

ulines {
services.192.168.1.3;
stats.192.168.1.3;

};


services.conf

RemoteServer Line
RemoteServer    192.168.1.3 6667 "f00Ness"

ServerName Line
ServerName  "192.168.1.3"

BTW - My ip is allways 192.168.1.3 on my router.
otherwise, my dedicated ip is server.bobbahotel.net

[Edited on 7-12-2006 by Austin]
Logged

n00bie

  • Anope User
  • Offline Offline
  • Gender: Male
  • Posts: 411
(No subject)
« Reply #1 on: December 08, 2006, 08:02:37 AM »

Firstly, afaik UnrealIRCd does not have a valid options 'standard' for the LISTEN blocks, you can find more about the valid link blocks by reading this docs http://www.vulnscan.org/UnrealIRCd/unreal32docs.html#listenblock or the IRCd docs/manual itself.

Secondly, on your unrealircd link block try using a normal hostname/servername for your services-server or name. example:

link services.bobbahotel.net
{
 username *;
 hostname 192.168.1.3;
 port 6667;
 bind-ip *;
 password-connect "f00ness";
 password-receive "f00ness";
 class servers;
};

Third, your ircd U:Lines ...

ulines {
 services.bobbahotel.net;
 stats.bobbahotel.net;
};

And Lastly, from your services.conf change your ServerName to
ServerName "services.bobbahotel.net"

and remember to double check your services-server "services.bobbahotel.net"; on your unrealircd SET block.
Logged
I am always doing things that which I cannot do, in order that I may learn how to do it.
Pages: [1]   Go Up