Some questions

These are old archives. They are kept for historic purposes only.
Post Reply
haylebob
Posts: 13
Joined: Tue Mar 27, 2012 6:08 pm

Some questions

Post 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
Stealth
Head of Support
Posts: 2086
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Re: Some questions

Post 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)
Stealth
Head of Support
Posts: 2086
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Re: Some questions

Post by Stealth »

warg has also created a simple guide for getting services working with Unreal here: http://www.ircsystems.net/blog/?p=62
haylebob
Posts: 13
Joined: Tue Mar 27, 2012 6:08 pm

Re: Some questions

Post 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?
G50
Posts: 16
Joined: Sat Jan 14, 2012 1:45 am
Location: Illinois, USA

Re: Some questions

Post 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.
"Heart + Determination + Perserverence = Success"
haylebob
Posts: 13
Joined: Tue Mar 27, 2012 6:08 pm

Re: Some questions

Post by haylebob »

Hi,

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

best regards
haylebob
Post Reply