services and IRCd

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
erfg1
Posts: 7
Joined: Fri Jan 07, 2005 12:32 am

services and IRCd

Post by erfg1 »

I configured Anope and unrealIRCd perfectly. UnrealIRCd works perfectly without a problem. I followed this setup http://www.vulnscan.org/UnrealIrcd/faq/#52 and typed in

Code: Select all

set {
 services-server "68.201.4.157";
};
Also, I did

Code: Select all

include "aliases/anope.conf";
I also followed this setup http://www.anope.org/~heinz/ilm.php and the NickServ, etc. wont connect. It acts as though it isn't connected at all.


Is it ok to have both the IRCD and the SERVICES running on the same port. 6667? or should they be on different ports?
Last edited by erfg1 on Mon May 01, 2006 4:57 pm, edited 1 time in total.
erfg1
Posts: 7
Joined: Fri Jan 07, 2005 12:32 am

Post by erfg1 »

----------------------------------------------------------------
[unrealircd.conf]

link 68.201.4.157
{
username *;
hostname 127.0.0.1;
port *;
bind-ip 127.0.0.1;
password-connect "fger1";
password-receive "fger1";
class servers;
};

ulines {
68.201.4.157;
};

----------------------------------------------------------------
[services.conf]

RemoteServer 68.201.4.157 6667 "fger1"

ServerName "68.201.4.157"
-----------------------------------------------------------------

I am on a Linksys router, but I did do DMZ and port forwarding so I can host outside the router just fine. The IRCD server runs just fine, but the Anobe doesn't. I host both the services and unrealircd on the same computer. I typed in...

cd ~/services
./services
(says nothing)

cd /home/Unreal3.2
./unreal start
(starts up IRCD)

The NickServ, ChanServ, etc. don't connect and I can't do any of their commands.
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Post by Stealth »

127.0.0.1 is NOT 68.201.4.157, so services won't connect. Fix them, and you will have it working.
erfg1
Posts: 7
Joined: Fri Jan 07, 2005 12:32 am

Post by erfg1 »

changed all 127.0.0.1's to 68.201.4.157's and it still wont work.
erfg1
Posts: 7
Joined: Fri Jan 07, 2005 12:32 am

Post by erfg1 »

Loading IRCD Protocol Module: [unreal32]
status: [0][Module, Okay - No Error]
Anope 1.7.14 (1023) (ircd protocol: UnrealIRCd 3.2+) starting up
ms_rsend requested unload...
debug: trying to load core module [ms_rsend]
debug: status: [6][Module Error, Error during load time or module returned MOD_STOP]
erfg1
Posts: 7
Joined: Fri Jan 07, 2005 12:32 am

Anything awrong with these configs

Post by erfg1 »

SERVICES.CONF
-------------------

RemoteServer 127.0.0.1 6667 "fger1"

ServerName "irc.theroarclan.com"

NetworkName "68.201.4.157"


UNREALIRCD.CONF
----------------------

include "aliases/anope.conf"

me
{
name "irc.theroarclan.com";
info "blah";
numeric 1;
};

listen *:6667;

link irc.theroarclan.com
{
username *;
hostname 127.0.0.1;
port 6667;
bind-ip 68.201.4.157;
password-connect "fger1";
password-receive "fger1";
class servers;
};

ulines {
68.201.4.157;
};

set {
network-name "68.201.4.157";
default-server "68.201.4.157";
services-server "irc.theroarclan.com";
help-channel "#help";
hiddenhost-prefix "roar";
};
don_will
Posts: 7
Joined: Tue Feb 28, 2006 11:26 am
Location: Delhi
Contact:

Post by don_will »

Code: Select all

set {
network-name "68.201.4.157";
default-server "68.201.4.157";
services-server "irc.theroarclan.com";
help-channel "#help";
hiddenhost-prefix "roar";
};
Do it like this

UNREALIRCD.CONF
----------------------
link services.theroarclan.com
{
username *;
hostname 68.201.4.157;
port 8088;
bind-ip *;
password-connect "fger1";
password-receive "fger1";
class servers;
};

ulines {
services.theroarclan.com;
};


set {
network-name "theroarclan IRC";
default-server "irc.theroarclan.com";
services-server "services.theroarclan.com";
help-channel "#help";
hiddenhost-prefix "roar";
};


SERVICES.CONF
-------------------

RemoteServer 68.201.4.157 8088 "fger1"

ServerName "irc.theroarclan.com"

NetworkName "theroarclan IRC"


I think irc.theroarclan.com is your server and 68.201.4.157 is your server DNS. ANd change the port (6667) because 6667 is generally used by users. So if u used for ur services port they cannt connect. So change the port in 8088.
Locked