nicknameblacklist.cfg 2.1 KB

123456789101112131415161718192021222324252627282930
  1. // Server Nickname Blacklist + Whitelist
  2. // =====================================
  3. // WARNING: You can NOT use CubeScript in here!!
  4. // accept nickname [IP range ...] [password ...] // add this nickname to the whitelist
  5. // (if IP ranges are specified, only connects from that ranges are allowed; if one or more passwords are specified, the connect password has to match)
  6. // block nicknamefragment1 [nicknamefragment2 ...] // block nicknames that contain all specified fragments (up to 5)
  7. // blocki nicknamefragment1 [nicknamefragment2 ...] // block nicknames that contain all specified fragments (up to 5), ignore cases
  8. // accept, block and blocki can be shortened to a, b and bi
  9. // 'accept' has higher priority than 'block'
  10. // accept matches whole nicknames; block matches parts of nicknames
  11. // examples:
  12. // accept lorem // 'lorem' is an allowed nickname, no IP restrictions, no blacklist entries can block this name
  13. // accept ipsum 192.168.0.0/16 // accept 'ipsum' only, if he connects with an IP in the range 192.168.0.0-192.168.255.255
  14. // accept ipsum 10.0.0.0/8 // add another allowed IP range for 'ipsum'
  15. // accept ipsum foo bar // add two possible passwords for 'ipsum'
  16. // block dolor // block all nicknames that contain the substring 'dolor', for example 'dolores' or 'odolor'; does not block 'DOLOR'
  17. // block sit amet // block all nicknames that contain both substrings, for example 'sitamet' or 'dametosit'
  18. // blocki consectetur // block all nicknames that contain the substring 'consectetur', ignore case; block for example 'aconsectetur', 'oConSecTeTuR'
  19. // accept foobar 192.168.0.0/16 127.0.0.1 1.2.3.4-2.3.4.5 // accept 'foobar'; allow several IP ranges
  20. // clan whitelist example: a clan named 'DEV' with two members, 'foo' and 'bar'
  21. // accept DEV|foo 1.2.3.4 // foo has a static IP; no password required
  22. // accept DEV|bar 192.168.0.0/16 pwdpwd // bar has a dynamic IP from that range; in addition, the connect password has to match 'pwdpwd'
  23. // block DEV| // don't allow anyone else to wear the clan tag