Page 1 of 1

Some questions

Posted: Sat Mar 31, 2012 4:41 pm
by haylebob
hello,

i have a few questions which i dont find in the FAQs or
elsewere in the Unreal so far

1. were can i set the maxuser local
2. were can i set maxuser global
3. were and how can i set myself as Channel Owner
the Unreal runs on my own NAS Synlogy DS710

thanx in anvance
best regards
Michael

Re: Some questions

Posted: Sat Mar 31, 2012 8:31 pm
by Stealth
Local max users can be set in the class block, class::maxclients http://www.unrealircd.com/files/docs/un ... classblock

It is not possible to set a global max without a 3rd party module, I do not know of one that does this.

I recommend using services if you with to set yourself as a channel owner. There are multiple services packages that work with UnrealIRCd. You can find a list of services and other resources on my resources page (http://unreal.x-tab.org/resources)

Re: Some questions

Posted: Sat Mar 31, 2012 8:34 pm
by Stealth
warg has also created a simple guide for getting services working with Unreal here: http://www.ircsystems.net/blog/?p=62

Re: Some questions

Posted: Sun Apr 01, 2012 7:06 am
by haylebob
hello

im confused.
i checked the Class Block in unrealirc.conf the 500 maxclients

class clients
{
pingfreq 90;
maxclients 500;
sendq 100000;
recvq 8000;
};

the servermessage say this
Current Local Users: 2 Max: 4
Current Global Users: 2 Max: 2

whats that means?

Re: Some questions

Posted: Sun Apr 01, 2012 11:47 am
by G50
haylebob wrote:hello

im confused.
i checked the Class Block in unrealirc.conf the 500 maxclients

class clients
{
pingfreq 90;
maxclients 500;
sendq 100000;
recvq 8000;
};

the servermessage say this
Current Local Users: 2 Max: 4
Current Global Users: 2 Max: 2

whats that means?
Class blocks are classes in which connections will be placed (for example from allow blocks or servers from link blocks), you generally have multiple class blocks (ex: for servers, clients, opers).
-name is the descriptive name, like "clients" or "servers", this name is used for referring to this class from allow/link/oper/etc blocks
-pingfreq is the number of seconds between PINGs from the server (something between 90 and 180 is recommended).
-connfreq is used only for servers and is the number of seconds between connection attempts if autoconnect is enabled
-maxclients specifies the maximum (total) number of clients/servers which can be in this class
-sendq specifies the amount of data which can be in the send queue (very high for servers with low bandwidth, medium for clients)
-recvq specifies the amount of data which can be in the receive queue and is used for flood control (this only applies to normal users, try experimenting with values 3000-8000, 8000 is the default).

Current users - the number of users connected to the Network
Max users - the number of users that have been connected to the Network at one time

*note - Max users does not mean how many maximum allowed.

Re: Some questions

Posted: Sun Apr 01, 2012 12:01 pm
by haylebob
Hi,

thank u very much :D
i thought i have to adjust max user :)

best regards
haylebob