Bans - WelcomeWinters/gershwin GitHub Wiki

Bans

Tinyboard currently accepts three forms of bans:

  • IP address (β€œstatic”) bans
  • Range/wildcard bans
  • CIDR netmask bans

Static bans apply to a single IP addess, such as β€œ127.0.0.1” and β€œ::1” for IPv6.

IP range bans allow the use of the asterisk character (*) as a wildcard. For example, β€œ127.0.0.” or just β€œ127.0.” would match β€œ127.0.0.1”. To use this, $config['ban_range'] must be enabled.

$config['ban_range'] = true;

With CDIR netmask bans, β€œ10.0.0.0/8” would match β€œ10.0.0.0 - 10.255.255.255” for example. Due to MySQL limitations, this is currently an IPv4-only feature. To use this, $config['ban_cdir'] must be enabled.

$config['ban_cidr'] = true;

See also