Page 1 of 1

AntiRandom

Posted: Wed May 09, 2007 10:48 am
by eyal123
i install AntiRandom on Unreal3.2.6 and its give me errors
maby beacuse AntiRandom is for Unreal old verision or its can work with Unreal3.2.6? There is new verision of it? or how to work with this module on the new verision of Unreal3.2.6?

Posted: Wed May 09, 2007 9:29 pm
by Komui
First you need to be more specific, what kind of errors are you getting? Because I just compiled the module and it works fine and I am using Unreal 3.2.6

ok

Posted: Wed May 09, 2007 10:09 pm
by eyal123
i am using AntiRandom-1.1 on Unreal3.2.6(tell me if there is newer verision)
i configure all and make install then i was editing the sample.conf save him. the i put the line loadmodule "src/modules/antirandom.so"; on the unrealircd.conf then i was rehash the ircd and i was geeting errors:
[error] set::antirandom::threshold missing
[error] set::antirandom::ban-action missing
[error] set::antirandom::ban-time missing
[error] set::antirandom::ban-reason missing
[error] 4 errors encountered

on the antirandom.conf all the errors is not missing and its all write in the conf
do i need to rename smaple.conf to another name?

Posted: Wed May 09, 2007 10:35 pm
by Komui
[error] set::antirandom::threshold missing
[error] set::antirandom::ban-action missing
[error] set::antirandom::ban-time missing
[error] set::antirandom::ban-reason missing

You need to set those in your unrealircd.conf

Posted: Wed May 09, 2007 10:44 pm
by craftsman
example

shell on

cd /home/Unreal3.2

pico antirandom.conf

loadmodule "src/modules/antirandom.so";

set {
antirandom {
threshold 5;
ban-action gline;
ban-time 4h;
ban-reason "You look like a bot. Be sure to fill in your nick/ident/realname properly.";
fullstatus-on-load yes;
show-failedconnects yes;
except-hosts {
"irc-gateway.mynet.xx";
"*.trusted.yy";
"192.168.*";
};
};
};


urealircd.conf add

include "antirandom.conf";

ready !

Posted: Wed May 09, 2007 10:45 pm
by craftsman

Code: Select all

loadmodule "src/modules/antirandom.so";

set {
	antirandom {
		threshold 5;
		ban-action gline;
		ban-time 4h;
		ban-reason "You look like a bot. Be sure to fill in your nick/ident/realname properly.";
		fullstatus-on-load yes;
		show-failedconnects yes;
		except-hosts {
			"irc-gateway.mynet.xx";
			"*.trusted.yy";
			"192.168.*";
		};
	};
};