Page 1 of 1

I can't see the inbound connections...

Posted: Wed Dec 16, 2009 8:51 am
by Exedore
Hello Dear Friends..

My problem is this:
I have 3 servers linked.
If I'm in in the server "A", I can't see the inbound connections of the server "B"
If I'm in in the server "C", I can't see the inbound connections of the server "A"

Only I can see the inbound connections of the server where I'm in.
If I'm in in A, only clients connecting on "A" are visibles to me.

The topology is this:

Code: Select all

                          Server A --------------- Server B
                             \                       /
                              \                     /
                               \                   /
                                \                 /
                                 \               /
                                  \             /
                                      Server C
Server A goes to Server B
Server B goes to Server C
Server C goes to Server A
Every server as a HUB.

The services (Anope), Stats (Neostats), and proxy checker (BOPM)
are up and running just fine.

What could be the problem?

Thank you

Re: I can't see the inbound connections...

Posted: Wed Dec 16, 2009 9:41 am
by Casper
If I understand you right:

http://www.unrealircd.com/files/docs/un ... e_snomasks

Look for the option Far Connects (or just /mode $me +s F)

Re: I can't see the inbound connections...

Posted: Wed Dec 16, 2009 9:45 am
by Exedore
These are my snomask:

Code: Select all

+kcfFjveGnNqSsoJ
and yes.. as you can see

I have the +sF modes setted

Re: I can't see the inbound connections...

Posted: Wed Dec 16, 2009 11:11 am
by Exedore
I've solve it.
This may be the solution.
If you wanna see the inbound connections from all your linked servers, don't put them in the u-lines block.

Like this:

Code: Select all

/*
 *
 * NEW: ulines {}
 * OLD: U:Line
 * U-lines give servers more power/commands, this should ONLY be set
 * for services/stats servers and NEVER for normal UnrealIRCd servers!
 * Syntax is as follows:
 * ulines {
 *	(server to uline);
 *	(server to uline);
 *  [etc]
 * };
*/
ulines {
	don't.put.here.the.names.of.the.linked.servers.;
};

If this is the right solution, we can continue with our lives, and this block of problem could be used as a reference.
If not, please don't be hard with me guys.
As coders and sysops, sometimes little details may escape from us that make us crazy.

Thank you again.

Re: I can't see the inbound connections...

Posted: Wed Dec 16, 2009 11:17 am
by Casper
Hmm, let me help you point it out to you then :-)
Snomasks are server notice masks, it's a special type of usermode that controls which server notices you will receive (mostly used by opers)

It can be set by: /mode yournick +s SNOMASK, for example: /mode yournick +s +cF
To remove certain snomasks, use something like: /mode yournick +s -c
Or you can remove all snomasks by simply doing: /mode yournick -s

The current available snomasks are:
c - local connects
F - far connects (except from U-lined servers)
The ulines block lets you define certain servers as having extra abilities. This should only be used for servers such as services and stats. This should not be set for a normal server. Each entry is the name of the server which will receive the extra abilities.
Literally copy / pasting. You may miss things from time to time, that's human. It's just not the smartest thing to ask here if it's written down on the documentation page..

Nevertheless, you're welcome :)

Re: I can't see the inbound connections...

Posted: Sat Dec 19, 2009 4:18 pm
by Jobe
Exedore wrote:I've solve it.
This may be the solution.
If you wanna see the inbound connections from all your linked servers, don't put them in the u-lines block.

~~snip~~

If this is the right solution, we can continue with our lives, and this block of problem could be used as a reference.
If not, please don't be hard with me guys.
As coders and sysops, sometimes little details may escape from us that make us crazy.

Thank you again.
Yes this is correct, client servers and hubs should NOT be in your ulines block. In fact ulines should ONLY ever contain the names of services and statistics servers, never any other server.