Anope IRC Services

Please login or register.

Login with username, password and session length
Advanced search  

News:

Pages: [1] 2   Go Down

Author Topic: Problem Linking: Unreal and Anope  (Read 20823 times)

0 Members and 1 Guest are viewing this topic.

carocho men

  • Anope User
  • Offline Offline
  • Posts: 20
Problem Linking: Unreal and Anope
« on: October 21, 2011, 08:03:04 PM »

Hi...

I'm struggling to understand some details...

In your explanation:

----------------------------------
Now down to business:

1> services is going to be named services.mynet.org
2> our ircd is unreal-3.2.8.1
3> our services IP is 1.2.3.4
4> our server IP is 2.3.4.5
5> our port is 6667 { any unused port between 1025 and 65535 may be used for linking services. }
6> our numeric is 1 - This MUST be different to the other servers on the network!!!!!
7> our password is the word 'password' (without the quotes)

unrealircd.conf
-------------------------

listen 2.3.4.5:6667;

link services.mynet.org
{
      username *;
      hostname 1.2.3.4;
      bind-ip *;
      hub *;
      port 6667;
      password-connect "password";
      password-receive "password";
      class servers;
};

ulines { services.mynet.org; };

set { services-server "services.mynet.org"; };

include "aliases/anope.conf";

-----------
services.conf

IRCDModule "unreal32"
Numeric 1

RemoteServer 2.3.4.5 6667 "password"

ServerName "services.mynet.org"
-------------------------------


In my case a have a dedibox from OVH that has ip number 94.ww.xx.yy.zz or ks309xxxxxx.kimsufi.com.
My dedibox only has 1 IP and the ircd i want to create has no more networks linked to it.

What means services.mynet.org?? Is my OVH server IP or is the name i want my ircd to be know by? (ex:irc.mysite.net)?

The ip you use (1.2.3.4) is my server IP 94.ww.xx.yy.zz?
And what stands for the other ip you use ( 2.3.4.5)?

The port 6667 (your 7070) is the port that i want clients to connect to to my irc.myste.org?

Sorry for the newbie questions. I've already read some documentation but my skills in IRC servers is not very extended...

Logged

LEthaLity

  • Team
  • *
  • Offline Offline
  • Gender: Male
  • Posts: 307
    • LEthaLity
Re: Problem Linking: Unreal and Anope
« Reply #1 on: October 21, 2011, 11:16:22 PM »

services.mynet.org should be replaced by a server name you wish to give services.. it shouldn't be irc.mynet.org because you've probably called your irc server the same prefix, it's just a server name with any domain/tld you desire (you don't have to own that domain, you could have services.microsoft.com if you so wished).

You don't need the numeric when linking to unreal.
If you only have one IP, then the IP to connect to in services.conf RemoteServer, and the one in unrealircd.conf's link block will be the same..
The port used is one that services connects to the irc server on, not users. You probably want a separate Listen block for servers.

Eg:
Quote
unrealircd.conf
listen 94.ww.xx.yy.zz:7070 {
    options {
        serversonly;
    };
};

link services.mynet.com
{
   username   *;
   hostname    94.ww.xx.yy.zz;
   bind-ip    *;
   port       7070;
   hub             *;
   password-connect "password";
   password-receive "password";
   class           servers;
   options {
      };
};
ulines { services.mynet.com; };

set { services-server "services.mynet.com"; };


services.conf
RemoteServer    94.ww.xx.yy.zz 7070 "password"
ServerName  "services.mynet.com"

Logged

carocho men

  • Anope User
  • Offline Offline
  • Posts: 20
Re: Problem Linking: Unreal and Anope
« Reply #2 on: October 21, 2011, 11:56:43 PM »

So let me see if i understand...

Let's say i have a site called www.carochomen.net... This is just an example. And this site is hosted in a different server than this one I'm talking about (94.ww.xx.yy.zz).

So if i want to create an ircd for my site i want something like this when connecting to carochomen's ircd

(on xChat)
/server irc.carochomen.net 6667



So the ip that that server address is going to connect to is my server 94.ww.xx.yy.zz.

Let's take a look now at the code for linking services and unreal:


Quote
unrealircd.conf
listen 94.ww.xx.yy.zz:7070 {
    options {
        serversonly;
    };
};

link services.carocho-men.net
{
   username   *;
   hostname    94.ww.xx.yy.zz;
   bind-ip    *;
   port       7070;
   hub             *;
   password-connect "password";
   password-receive "password";
   class           servers;
   options {
      };
};
ulines { services.carocho-men.net; };

set { services-server "services.carocho-men.net"; };


services.conf
RemoteServer    94.ww.xx.yy.zz 7070 "password"
ServerName  "services.carocho-men.net"

So if i have it like this, will am i able to do the /server irc.carochomen.net in xChat and have it to work?
« Last Edit: October 22, 2011, 12:08:22 AM by carocho men »
Logged

LEthaLity

  • Team
  • *
  • Offline Offline
  • Gender: Male
  • Posts: 307
    • LEthaLity
Re: Problem Linking: Unreal and Anope
« Reply #3 on: October 22, 2011, 12:05:52 AM »

If you have an A entry for "irc" in the dns records for carochomen.net pointing to the ircd IP, yes.
« Last Edit: October 22, 2011, 12:07:31 AM by LEthaLity »
Logged

carocho men

  • Anope User
  • Offline Offline
  • Posts: 20
Re: Problem Linking: Unreal and Anope
« Reply #4 on: October 22, 2011, 12:10:40 AM »

If you have an A entry for "irc" in the dns records for carochomen.net pointing to the ircd IP, yes.

:o

Didn't understand...

Is that some line i have to add to /etc/resolv.conf???


I have to be honest... I don't understand much of networking... :(
« Last Edit: October 22, 2011, 12:13:37 AM by carocho men »
Logged

LEthaLity

  • Team
  • *
  • Offline Offline
  • Gender: Male
  • Posts: 307
    • LEthaLity
Re: Problem Linking: Unreal and Anope
« Reply #5 on: October 22, 2011, 12:25:11 AM »

To make an "address" eg www/irc.anything.com take you to an IP you need to own that domain name, I'm assuming you don't actually possess carochomen.net. You need to buy it, then edit the dns zone, adding an "A" entry for "irc" pointing to your irc servers IP, you might want to go and read up on how the internet works or something.
The addresses used in the irc configs eg. services.conf's ServerName are virtual addresses, they're only used between the servers and clients and don't need to exist for real.
Logged

carocho men

  • Anope User
  • Offline Offline
  • Posts: 20
Re: Problem Linking: Unreal and Anope
« Reply #6 on: October 22, 2011, 12:34:39 AM »

Ok... I'm going to try to be more specific...

A friend of mine has a site and i just want to seutp an ircd to him on my server... He has the domain for the site. I have an OVH seedbox where i wish to install UnrealIRCd and Anope services.

At the end i want that his site's users be able to connect to irc that is installed in my OVH seedbox...

So do i really have to change anything in site's DNS zone???

I just want to create an ircd to the site but apart of it... My server and the site's server has nothing to do with each other...

I just need to understand what names can i use and where do i have to use them and where do i specify the link that i want site's users connect to so that they can join the site's irc main channel...
Logged

katsklaw

  • Supporter
  • Anope User
  • Offline Offline
  • Posts: 537
Re: Problem Linking: Unreal and Anope
« Reply #7 on: October 22, 2011, 01:56:38 AM »

As already explained. If you want users to connect to irc.something.com, then you need an A record in that sites DNS zone pointing to you IP.
Logged

carocho men

  • Anope User
  • Offline Offline
  • Posts: 20
Re: Problem Linking: Unreal and Anope
« Reply #8 on: October 22, 2011, 07:58:35 AM »

So if i want to avoid that, i have to use my ip? Is that what i have to do? Instead of using a link like irc.carochomen.net?
Logged

katsklaw

  • Supporter
  • Anope User
  • Offline Offline
  • Posts: 537
Re: Problem Linking: Unreal and Anope
« Reply #9 on: October 22, 2011, 02:11:23 PM »

So if i want to avoid that, i have to use my ip? Is that what i have to do? Instead of using a link like irc.carochomen.net?

Obviously.
Logged

carocho men

  • Anope User
  • Offline Offline
  • Posts: 20
Re: Problem Linking: Unreal and Anope
« Reply #10 on: October 23, 2011, 01:12:30 PM »

Ok... I understood...

No when i include services.conf in unrealircd.conf like this:

Code: [Select]
include "services/services.conf";
I get this error:

Code: [Select]
* Loading IRCd configuration ..
* services/services.conf:159: Ignoring extra data
* services/services.conf:159: Ignoring extra data
* services/services.conf:198: Ignoring extra data
* services/services.conf:198: Ignoring extra data
* services/services.conf:251: Ignoring extra data
* services/services.conf:252: Ignoring extra data
* services/services.conf:252: Ignoring extra data
* services/services.conf:252: Ignoring extra data
* services/services.conf:253: Ignoring extra data
* services/services.conf:253: Ignoring extra data
* services/services.conf:253: Ignoring extra data
* services/services.conf:254: Ignoring extra data
* services/services.conf:254: Ignoring extra data
* services/services.conf:254: Ignoring extra data
* services/services.conf:255: Ignoring extra data
* services/services.conf:255: Ignoring extra data
* services/services.conf:255: Ignoring extra data
* services/services.conf:256: Ignoring extra data
* services/services.conf:256: Ignoring extra data
* services/services.conf:256: Ignoring extra data
* services/services.conf:257: Ignoring extra data
* services/services.conf:257: Ignoring extra data
* services/services.conf:257: Ignoring extra data
* services/services.conf:259: Ignoring extra data
* services/services.conf:259: Ignoring extra data
* services/services.conf:259: Ignoring extra data
* services/services.conf:290: Ignoring extra data
* services/services.conf:290: Ignoring extra data
* services/services.conf:295: Ignoring extra data
* services/services.conf:295: Ignoring extra data
* services/services.conf:300: Ignoring extra data
* services/services.conf:300: Ignoring extra data
* services/services.conf:302: Ignoring extra data
* services/services.conf:302: Ignoring extra data
* services/services.conf:303: Ignoring extra data
* services/services.conf:303: Ignoring extra data
* services/services.conf:304: Ignoring extra data
* services/services.conf:304: Ignoring extra data
* services/services.conf:305: Ignoring extra data
* services/services.conf:305: Ignoring extra data
* services/services.conf:306: Ignoring extra data
* services/services.conf:306: Ignoring extra data
* services/services.conf:307: Ignoring extra data
* services/services.conf:307: Ignoring extra data
* services/services.conf:326: Ignoring extra data
* services/services.conf:326: Ignoring extra data
* services/services.conf:349: Ignoring extra data
* services/services.conf:349: Ignoring extra data
* services/services.conf:360: Ignoring extra data
* services/services.conf:360: Ignoring extra data
* services/services.conf:372: Ignoring extra data
* services/services.conf:372: Ignoring extra data
* services/services.conf:416: Ignoring extra data
* services/services.conf:426: Ignoring extra data
* services/services.conf:426: Ignoring extra data
* services/services.conf:435: Ignoring extra data
* services/services.conf:435: Ignoring extra data
* services/services.conf:441: Ignoring extra data
* services/services.conf:441: Ignoring extra data
* services/services.conf:448: Ignoring extra data
* services/services.conf:448: Ignoring extra data
* services/services.conf:453: Ignoring extra data
* services/services.conf:453: Ignoring extra data
* services/services.conf:459: Ignoring extra data
* services/services.conf:459: Ignoring extra data
* services/services.conf:478: Ignoring extra data
* services/services.conf:478: Ignoring extra data
* services/services.conf:487: Ignoring extra data
* services/services.conf:487: Ignoring extra data
* services/services.conf:496: Ignoring extra data
* services/services.conf:496: Ignoring extra data
* services/services.conf:504: Ignoring extra data
* services/services.conf:562: Ignoring extra data
* services/services.conf:562: Ignoring extra data
* services/services.conf:567: Ignoring extra data
* services/services.conf:567: Ignoring extra data
* services/services.conf:619: Ignoring extra data
* services/services.conf:627: Ignoring extra data
* services/services.conf:627: Ignoring extra data
* services/services.conf:654: Ignoring extra data
* services/services.conf:667: Ignoring extra data
* services/services.conf:667: Ignoring extra data
* services/services.conf:674: Ignoring extra data
* services/services.conf:674: Ignoring extra data
* services/services.conf:684: Ignoring extra data
* services/services.conf:695: Ignoring extra data
* services/services.conf:695: Ignoring extra data
* services/services.conf:731: Ignoring extra data
* services/services.conf:769: Ignoring extra data
* services/services.conf:770: Ignoring extra data
* services/services.conf:771: Ignoring extra data
* services/services.conf:772: Ignoring extra data
* services/services.conf:775: Ignoring extra data
* services/services.conf:776: Ignoring extra data
* services/services.conf:777: Ignoring extra data
* services/services.conf:788: Ignoring extra data
* services/services.conf:788: Ignoring extra data
* services/services.conf:795: Ignoring extra data
* services/services.conf:795: Ignoring extra data
* services/services.conf:802: Ignoring extra data
* services/services.conf:802: Ignoring extra data
* services/services.conf:807: Ignoring extra data
* services/services.conf:807: Ignoring extra data
* services/services.conf:821: Ignoring extra data
* services/services.conf:821: Ignoring extra data
* services/services.conf:826: Ignoring extra data
* services/services.conf:826: Ignoring extra data
* services/services.conf:834: Ignoring extra data
* services/services.conf:834: Ignoring extra data
* services/services.conf:840: Ignoring extra data
* services/services.conf:840: Ignoring extra data
* services/services.conf:865: Ignoring extra data
* services/services.conf:865: Ignoring extra data
* services/services.conf:872: Ignoring extra data
* services/services.conf:872: Ignoring extra data
* services/services.conf:879: Ignoring extra data
* services/services.conf:887: Ignoring extra data
* services/services.conf:902: Ignoring extra data
* services/services.conf:918: Ignoring extra data
* services/services.conf:938: Ignoring extra data
* services/services.conf:940: Ignoring extra data
* services/services.conf:943: Ignoring extra data
* services/services.conf:945: Ignoring extra data
* services/services.conf:946: Ignoring extra data
* services/services.conf:949: Ignoring extra data
* services/services.conf:956: Ignoring extra data
* services/services.conf:956: Ignoring extra data
* services/services.conf:961: Ignoring extra data
* services/services.conf:961: Ignoring extra data
* services/services.conf:975: Ignoring extra data
* services/services.conf:975: Ignoring extra data
* services/services.conf:985: Ignoring extra data
* services/services.conf:985: Ignoring extra data
* services/services.conf:990: Ignoring extra data
* services/services.conf:990: Ignoring extra data
* services/services.conf:995: Ignoring extra data
* services/services.conf:995: Ignoring extra data
* services/services.conf:1002: Ignoring extra data
* services/services.conf:1002: Ignoring extra data
* services/services.conf:1014: Ignoring extra data
* services/services.conf:1014: Ignoring extra data
* services/services.conf:1041: Ignoring extra data
* services/services.conf:1041: Ignoring extra data
* services/services.conf:1050: Ignoring extra data
* services/services.conf:1050: Ignoring extra data
* services/services.conf:1058: Ignoring extra data
* services/services.conf:1065: Ignoring extra data
* services/services.conf:1065: Ignoring extra data
* services/services.conf:1080: Ignoring extra data
* services/services.conf:1081: Ignoring extra data
* services/services.conf:1082: Ignoring extra data
* services/services.conf:1090: Ignoring extra data
* services/services.conf:1090: Ignoring extra data
* services/services.conf:1096: Ignoring extra data
* services/services.conf:1096: Ignoring extra data
* services/services.conf:1104: Ignoring extra data
* services/services.conf:1104: Ignoring extra data
* services/services.conf:1122: Ignoring extra data
* services/services.conf:1169: Ignoring extra data
* services/services.conf:1169: Ignoring extra data
* services/services.conf:1182: Ignoring extra data
* services/services.conf:1188: Ignoring extra data
* services/services.conf:1188: Ignoring extra data
* services/services.conf:1189: Ignoring extra data
* services/services.conf:1189: Ignoring extra data
* services/services.conf:1190: Ignoring extra data
* services/services.conf:1190: Ignoring extra data
* services/services.conf:1191: Ignoring extra data
* services/services.conf:1191: Ignoring extra data
* services/services.conf:1192: Ignoring extra data
* services/services.conf:1192: Ignoring extra data
* services/services.conf:1222: Ignoring extra data
* services/services.conf:1241: Ignoring extra data
* services/services.conf:1242: Ignoring extra data
* services/services.conf:1243: Ignoring extra data
* services/services.conf:1244: Ignoring extra data
* services/services.conf:1245: Ignoring extra data
* services/services.conf:1246: Ignoring extra data
* services/services.conf:1247: Ignoring extra data
* services/services.conf:1248: Ignoring extra data
* services/services.conf:1249: Ignoring extra data
* services/services.conf:1250: Ignoring extra data
* services/services.conf:1251: Ignoring extra data
* services/services.conf:1268: Ignoring extra data
* services/services.conf:1275: Ignoring extra data
* services/services.conf:1281: Ignoring extra data
* services/services.conf:1288: Ignoring extra data
* services/services.conf:1304: Ignoring extra data
* services/services.conf:1310: Ignoring extra data
* services/services.conf:1310: Ignoring extra data
* services/services.conf:1315: Ignoring extra data
* services/services.conf:1315: Ignoring extra data
* services/services.conf:1320: Ignoring extra data
* services/services.conf:1320: Ignoring extra data
* services/services.conf:1329: Ignoring extra data
* services/services.conf:1329: Ignoring extra data
* services/services.conf:1349: Ignoring extra data
* services/services.conf:1349: Ignoring extra data
* services/services.conf:1358: Ignoring extra data
* services/services.conf:1358: Ignoring extra data
* services/services.conf:1364: Ignoring extra data
* services/services.conf:1370: Ignoring extra data
* services/services.conf:1561: Ignoring extra data
* services/services.conf:1561: Ignoring extra data
[error] services/services.conf: Unexpected EOF for variable starting on line 251
[error] Could not load config file services/services.conf
[error] IRCd configuration failed to load
Possible error encountered (IRCd seemingly not started)
=====================================================
Check above for possible errors, and this output of
ircd.log. If you cannot solve the problem, read
Unreal.nfo on where to get support
=====================================================
[Sun Oct 23 13:43:48 2011] - TIME SYNCH: timeserver=1319370233, our=1319370228, offset = 5 [old offset: 6]

[Sun Oct 23 13:45:26 2011] - config error: services/services.conf: Unexpected EOF for variable starting on line 251
[Sun Oct 23 13:45:26 2011] - config error: Could not load config file services/services.conf
[Sun Oct 23 13:45:26 2011] - config error: IRCd configuration failed to load

What means "Ignoring extra data"?




Line 251 in services.conf has this:

Code: [Select]
NickServName    "NickServ"  "Nickname Server"

What is wrong with services.conf?
Logged

Jens Voss

  • Team
  • *
  • Offline Offline
  • Posts: 125
Re: Problem Linking: Unreal and Anope
« Reply #11 on: October 23, 2011, 01:31:48 PM »

UnrealIRCd can not read services.conf
Unreal and Services are two different programs, both use their own config files.
Please do not include services.conf from unrealircd.conf
Logged

carocho men

  • Anope User
  • Offline Offline
  • Posts: 20
Re: Problem Linking: Unreal and Anope
« Reply #12 on: October 23, 2011, 06:34:43 PM »

Ok...

So should i launch unreal or anope first?
Logged

Charles Kingsley

  • Contributor
  • *
  • Offline Offline
  • Posts: 1405
Re: Problem Linking: Unreal and Anope
« Reply #13 on: October 23, 2011, 06:47:20 PM »

Unreal because without it anope has nothing to connect to.
Logged

carocho men

  • Anope User
  • Offline Offline
  • Posts: 20
Re: Problem Linking: Unreal and Anope
« Reply #14 on: October 23, 2011, 06:57:01 PM »

Ok... I've done that...

And i can connect to ircd but services are down yet...

So i've started services in debug mode like this:

Code: [Select]
./services -debug -nofork
But i can't see all the output.

I can see a lot of lines stating:

Code: [Select]
[Oct 23 19:52:44.160320 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.160340 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.160358 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.160375 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.160392 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.160409 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.160426 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.160443 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.160561 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.160686 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.160795 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.160911 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.161027 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.161133 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.161252 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.161398 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.161510 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.161638 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.161747 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.161858 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.161970 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.162089 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.162276 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.162298 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.162322 2011] debug: Emitting event "delcommand" (2 args)
[Oct 23 19:52:44.162339 2011] debug: Emitting event "delcommand" (2 args)


And i have other lines stating this:

Code: [Select]
[Oct 23 19:52:44.149183 2011] [cs_appendtopic] Unloaded successfully

Code: [Select]
[Oct 23 19:52:44.151236 2011] [hs_request] Saving database...
[Oct 23 19:52:44.151293 2011] [hs_request] Succesfully saved database
[Oct 23 19:52:44.151313 2011] hs_request un-loaded

The last lines are:

Code: [Select]
[Oct 23 19:52:44.162638 2011] debug: Cleaning out Module run time directory (/home/unreal/src/Unreal3.2/services/modules/runtime) - this may take a moment please wait
[Oct 23 19:52:44.162786 2011] debug: Module run time directory has been cleaned out




Is there any way to see if services are correctly loaded???
Logged

Charles Kingsley

  • Contributor
  • *
  • Offline Offline
  • Posts: 1405
Re: Problem Linking: Unreal and Anope
« Reply #15 on: October 23, 2011, 07:03:33 PM »

Pastebin the whole log.
Logged

carocho men

  • Anope User
  • Offline Offline
  • Posts: 20
Re: Problem Linking: Unreal and Anope
« Reply #16 on: October 23, 2011, 07:04:24 PM »

Pastebin the whole log.

How do i do that?

I can't copy all output from console... It's too long to be visible...
Logged

Charles Kingsley

  • Contributor
  • *
  • Offline Offline
  • Posts: 1405
Re: Problem Linking: Unreal and Anope
« Reply #17 on: October 23, 2011, 07:06:05 PM »

Look in the logs dir.
Logged

carocho men

  • Anope User
  • Offline Offline
  • Posts: 20
« Last Edit: October 23, 2011, 08:04:21 PM by carocho men »
Logged

Charles Kingsley

  • Contributor
  • *
  • Offline Offline
  • Posts: 1405
Re: Problem Linking: Unreal and Anope
« Reply #19 on: October 23, 2011, 07:42:09 PM »

your linking on 6667, show me the info for this port from your unreal config.
Logged

carocho men

  • Anope User
  • Offline Offline
  • Posts: 20
Re: Problem Linking: Unreal and Anope
« Reply #20 on: October 23, 2011, 08:08:19 PM »

your linking on 6667, show me the info for this port from your unreal config.


You mean listen block? Or what block you mean from unrealircd.conf?


Code: [Select]
listen  94.23.58.134:6667 {
        options {
                clientsonly;
        };
};
« Last Edit: October 23, 2011, 08:13:32 PM by carocho men »
Logged

Charles Kingsley

  • Contributor
  • *
  • Offline Offline
  • Posts: 1405
Re: Problem Linking: Unreal and Anope
« Reply #21 on: October 23, 2011, 08:21:21 PM »

See that bit saying clientsonly that means anope being a server can't connect.
Logged

carocho men

  • Anope User
  • Offline Offline
  • Posts: 20
Re: Problem Linking: Unreal and Anope
« Reply #22 on: October 23, 2011, 09:09:49 PM »

Ok...

Corrected that but in services.conf where i had:

Code: [Select]
RemoteServer 94.xx.xx.xx 6667
changed to:

Code: [Select]
RemoteServer 94.xx.xx.xx 7070
where in unrealircd.conf i have these 2 listen blocks:

Code: [Select]
listen  94.xx.xx.xx:7070 {
        options {
                serversonly;
        };
};

listen  94.xx.xx.xx:6667 {
        options {
                clientsonly;
        };
};

But i still have

Quote
ChanServ :Services are currently down. Please try again later.
Logged

LEthaLity

  • Team
  • *
  • Offline Offline
  • Gender: Male
  • Posts: 307
    • LEthaLity
Re: Problem Linking: Unreal and Anope
« Reply #23 on: October 23, 2011, 09:11:24 PM »

Did you update the link block too?
Logged

carocho men

  • Anope User
  • Offline Offline
  • Posts: 20
Re: Problem Linking: Unreal and Anope
« Reply #24 on: October 23, 2011, 09:16:33 PM »

The link block is like this:

Code: [Select]
link services.xxxxxxxx.net
{
        username *;
        hostname 94.xx.xx.xx;
        bind-ip *;
        port 7070;
        hub *;
        password-connect "servicesxxxx";
        password-receive "servicesxxxx";
        class servers;
        options {
        };
};

where xx is sensitive information...


IS there anyway to rehash or restart ./services???
Logged
Pages: [1] 2   Go Up