Page 1 of 1

Log IP of all users

Posted: Sun Jun 15, 2008 3:59 pm
by ircmru
Hello ..
does anyone know if it exists a module which log all ip of people connecting ... with the time if possible

Re: Log IP of all users

Posted: Sun Jun 15, 2008 6:09 pm
by Jobe
Normally all IP's of users connecting are logged to ircd.log.

If not you can always set up a separate log file to log only user connects and disconnects using the following:

Code: Select all

log <file-name> {
	maxsize <max-file-size>;
	flags {
		connects;
	};
};
http://www.unrealircd.com/files/docs/unreal32docs.html#logblock wrote:The log block allows you to assign different log files for different purposes. The log:: contains the name of the log file. log::maxsize is an optional directive that allows you to specify a size that the log file will be wiped and restarted. You can enter this string using MB for megabytes, KB, for kilobytes, GB, for gigabytes. The log::flags specifies which types of information will be in this log. See the list of available flags below.