AntiRandom

These are old archives. They are kept for historic purposes only.
Post Reply
eyal123
Posts: 2
Joined: Wed May 09, 2007 10:44 am

AntiRandom

Post 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?
Komui
Posts: 2
Joined: Wed Apr 25, 2007 3:12 am

Post 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
eyal123
Posts: 2
Joined: Wed May 09, 2007 10:44 am

ok

Post 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?
Komui
Posts: 2
Joined: Wed Apr 25, 2007 3:12 am

Post 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
craftsman
Posts: 24
Joined: Thu Feb 15, 2007 10:04 pm
Location: Sonora, México.
Contact:

Post 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 !
craftsman
Posts: 24
Joined: Thu Feb 15, 2007 10:04 pm
Location: Sonora, México.
Contact:

Post 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.*";
		};
	};
};
Post Reply