(Created page with "<nowiki>*</nowiki> These settings are especially useful for two reasons. <nowiki>**</nowiki> One, sometimes g-lines get added for servers. This helps to prevent the ban from...") |
No edit summary |
||
Line 1: | Line 1: | ||
* These settings are especially useful for two reasons. | |||
** One, sometimes g-lines get added for servers. This helps to prevent the ban from being enforced. | |||
** Two, the second part (deny) allows you to block all incoming connections until you have relinked to your server of choice. | |||
<pre> | |||
except ban { | except ban { | ||
type { all; }; | type { all; }; | ||
// Me | // Me | ||
mask *@127.0.0.1; | mask *@127.0.0.1; | ||
// Hubs! | // Hubs! | ||
// | // | ||
// irc.shitposting.space | // irc.shitposting.space | ||
mask *@144.202.61.61; | mask *@144.202.61.61; | ||
// irc.freenode.ceo | // irc.freenode.ceo | ||
mask *@91.92.144.105; | mask *@91.92.144.105; | ||
mask *@2a0e:8f02:1080::2; | mask *@2a0e:8f02:1080::2; | ||
// irc.sigint.pw | // irc.sigint.pw | ||
mask *@176.31.26.128; | mask *@176.31.26.128; | ||
mask *@2001:41d0:1:b254:1::1; | mask *@2001:41d0:1:b254:1::1; | ||
// soggy.internet.relay.cat | // soggy.internet.relay.cat | ||
mask *@93.158.239.42; | mask *@93.158.239.42; | ||
// eu-north.hub | // eu-north.hub | ||
mask *@65.21.106.233; | mask *@65.21.106.233; | ||
mask *@2a01:4f9:c010:8698::1; | mask *@2a01:4f9:c010:8698::1; | ||
// uswest.sprynet.org | // uswest.sprynet.org | ||
mask *@129.159.41.62; | mask *@129.159.41.62; | ||
// fbi,packetscanner.net | // fbi,packetscanner.net | ||
mask *@129.213.127.163; | mask *@129.213.127.163; | ||
// eu-west.hub | // eu-west.hub | ||
mask *@212.129.35.122; | mask *@212.129.35.122; | ||
} | } | ||
deny link { | deny link { | ||
mask { | mask { | ||
// Add all the network's hubs after this line, prefixed with "!" | // Add all the network's hubs after this line, prefixed with "!" | ||
!irc.freenode.ceo; | !irc.freenode.ceo; | ||
!eu-north.hub; | !eu-north.hub; | ||
!irc.sigint.pw; | !irc.sigint.pw; | ||
!soggy.internet.relay.cat; | !soggy.internet.relay.cat; | ||
!irc.shitposting.space; | !irc.shitposting.space; | ||
!uswest.sprynet.org; | !uswest.sprynet.org; | ||
!fbi.packetscanner.net; | !fbi.packetscanner.net; | ||
!eu-west.hub; | !eu-west.hub; | ||
}; | }; | ||
// Add all your upstream hubs here | |||
rule !connected(soggy.internet.relay.cat)&&!connected(uswest.sprynet.org)&&!connected(irc.shitposting.space); | rule !connected(soggy.internet.relay.cat)&&!connected(uswest.sprynet.org)&&!connected(irc.shitposting.space); | ||
type all; | type all; | ||
}; | }; | ||
</pre> |
Revision as of 22:20, 15 July 2021
- These settings are especially useful for two reasons.
- One, sometimes g-lines get added for servers. This helps to prevent the ban from being enforced.
- Two, the second part (deny) allows you to block all incoming connections until you have relinked to your server of choice.
except ban { type { all; }; // Me mask *@127.0.0.1; // Hubs! // // irc.shitposting.space mask *@144.202.61.61; // irc.freenode.ceo mask *@91.92.144.105; mask *@2a0e:8f02:1080::2; // irc.sigint.pw mask *@176.31.26.128; mask *@2001:41d0:1:b254:1::1; // soggy.internet.relay.cat mask *@93.158.239.42; // eu-north.hub mask *@65.21.106.233; mask *@2a01:4f9:c010:8698::1; // uswest.sprynet.org mask *@129.159.41.62; // fbi,packetscanner.net mask *@129.213.127.163; // eu-west.hub mask *@212.129.35.122; } deny link { mask { // Add all the network's hubs after this line, prefixed with "!" !irc.freenode.ceo; !eu-north.hub; !irc.sigint.pw; !soggy.internet.relay.cat; !irc.shitposting.space; !uswest.sprynet.org; !fbi.packetscanner.net; !eu-west.hub; }; // Add all your upstream hubs here rule !connected(soggy.internet.relay.cat)&&!connected(uswest.sprynet.org)&&!connected(irc.shitposting.space); type all; };