Bopm.txt 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. ngIRCd - Next Generation IRC Server
  2. http://ngircd.barton.de/
  3. (c)2001-2014 Alexander Barton and Contributors.
  4. ngIRCd is free software and published under the
  5. terms of the GNU General Public License.
  6. -- BOPM.txt --
  7. I. Introduction
  8. ~~~~~~~~~~~~~~~~
  9. Citing <http://wiki.blitzed.org/BOPM>: "BOPM is an open source open proxy
  10. monitor, designed for use with hybrid-based ircds, although it can be used
  11. with slight modification on any server which has the ability to show connects
  12. to opers and that supports KLINEs."
  13. Starting with Release 17, ngIRCd supports all required log messages that
  14. BOPM requires to be useful.
  15. II. Installation
  16. ~~~~~~~~~~~~~~~~~
  17. Install BOPM as usual, please see the BOPM documentation for details.
  18. Afterwards adjust the following configuration parameters that are important
  19. for ngIRCd:
  20. a) BOPM "IRC" section:
  21. 1) Set "server" and "port" accordingly,
  22. 2) adjust the "oper" line to match an [Operator] block in ngircd.conf,
  23. 3) change "mode" to "+ci" or "+c".
  24. 4) Set "connregex" to the following string, everything in one line(!):
  25. "Client connecting: ([^ ]+) \\(([^@]+)@([^\\)]+)\\) \\[([0-9\\.]+)\\].*";
  26. and comment out all the other "connregex" examples (that is, prepend a
  27. "#" character).
  28. 5) Set "kline" to "GLINE *@%h :Open proxy found on your host!";
  29. and comment out all the other "kline" examples.
  30. b) BOPM "scanner" section:
  31. Make sure you configure a valid "target_ip" and "target_port" for the
  32. configured scanners to test. And please note that you CAN'T USE the port
  33. of ngIRCd, because ngIRCd doesn't send any banner message by default!
  34. So you need a service what sends a banner, so for example POP3, SMTP,
  35. IMAP, or SSH daemons should work ...