Only for friends

These are old archives. They are kept for historic purposes only.
Post Reply
lms
Posts: 32
Joined: Mon Mar 15, 2004 9:29 am

Only for friends

Post by lms »

Hi! I want creat an ircd for my clan and my friends, but i dont need any lame who spam... you know

i wanna kill all connection to my ircd except:

dsi|*!*@*
friends^*!*@*

how can i do this?

thanks
aquanight
Official supporter
Posts: 862
Joined: Tue Mar 09, 2004 10:47 pm
Location: Boise, ID

Post by aquanight »

If you know their hostnames/ips you can use those in the allow blocks... see the documentation.
Syzop
UnrealIRCd head coder
Posts: 2179
Joined: Sat Mar 06, 2004 8:57 pm
Location: .nl
Contact:

Post by Syzop »

Also, why not use a serverpasswords? That's exactly for things like this and it's what I use on my own server. See allow::password.
Then in mIRC/irssi/bitchx for example you use '/server my.nice.server 6667 password' (or, obviously, add it to the server list / use other GUI stuff, you get the idea ;p).
lms
Posts: 32
Joined: Mon Mar 15, 2004 9:29 am

x

Post by lms »

aquanight: dynamic ip.. :(

Syzop: thanks, but i wait for the 'autokill' idea, if nobody know that ill use password.. :wink:
aquanight
Official supporter
Posts: 862
Joined: Tue Mar 09, 2004 10:47 pm
Location: Boise, ID

Re: x

Post by aquanight »

lms wrote:aquanight: dynamic ip.. :(
I believe you can use idents in the allow block. Tell your friends to install and setup an Identd server (some clients have one built-in) and then tell them to use a specific ident, then you use a hostname mask like *ident@*.their.isp.net, where .their.isp.net is the part of their hostname that never changes (usually the ISP set stuff like .cpe.cableone.net (ME :P )). Obviously for really weird ISPs you might have something like sometext*-user*.isp.dialup.net or something :D .

If that doesn't work, passwords will :P .
lms
Posts: 32
Joined: Mon Mar 15, 2004 9:29 am

Post by lms »

its too complex :)
lms
Posts: 32
Joined: Mon Mar 15, 2004 9:29 am

Post by lms »

and is it good?

Code: Select all

ban nick {
        mask "*";
        reason "bye..";
};

except ban {
       mask           friends*!*@*;
};
AngryWolf
Posts: 554
Joined: Sat Mar 06, 2004 10:53 am
Location: Hungary
Contact:

Post by AngryWolf »

Your configuration is almost correct syntactically; the only ill-formed part is the except ban mask. That must be a user@host mask, it cannot consist of a nickname.

*Edit: by the way, the idea is nice, however I don't know any way to have nickname ban exceptions.
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Post by Stealth »

maybe it can be a new feature?
Solutech
Posts: 296
Joined: Thu Mar 18, 2004 11:38 pm

Post by Solutech »

Why not just not give out the server addy . If you dont advertise it then how will the lameass spammers get in ? .

I ran my ircd for 3 months with no advertising and a closed group of testers and nobody got in except them .

You can also set services up so that it will only allow certain nicks into channel and have it autokill any unauthd people . If you are building a small ircd then dont worry about the spammers they very likely wont even know you are there.
lms
Posts: 32
Joined: Mon Mar 15, 2004 9:29 am

Post by lms »

i dont know any services whats have 'except' :|
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Post by Stealth »

Solutech, my server has been running well over a year, and I have only had a few lamers. That doesnt mean that his server addy wont slip out and attract them :)
Post Reply