Advertisement
Guest User

Untitled

a guest
Oct 14th, 2017
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.38 KB | None | 0 0
  1. operator "xy" {
  2. /* name: the name of the oper must go above */
  3.  
  4. /* user: the user@host required for this operator. CIDR *is*
  5. * supported now. auth{} spoofs work here, other spoofs do not.
  6. * multiple user="" lines are supported.
  7. */
  8. user = "*";
  9.  
  10. /* password: the password required to oper. Unless ~encrypted is
  11. * contained in flags = ...; this will need to be encrypted using
  12. * mkpasswd, MD5 is supported
  13. */
  14. password = "bc1hn4v2i2r5b4a1olgo";
  15.  
  16. /* rsa key: the public key for this oper when using Challenge.
  17. * A password should not be defined when this is used, see
  18. * doc/challenge.txt for more information.
  19. */
  20. #rsa_public_key_file = "/usr/local/ircd/etc/oper.pub";
  21.  
  22. /* umodes: the specific umodes this oper gets when they oper.
  23. * If this is specified an oper will not be given oper_umodes
  24. * These are described above oper_only_umodes in general {};
  25. */
  26. #umodes = locops, servnotice, operwall, wallop;
  27.  
  28. /* fingerprint: if specified, the oper's client certificate
  29. * fingerprint will be checked against the specified fingerprint
  30. * below.
  31. */
  32. #fingerprint = "c77106576abf7f9f90cca0f63874a60f2e40a64b";
  33.  
  34. /* snomask: specific server notice mask on oper up.
  35. * If this is specified an oper will not be given oper_snomask.
  36. */
  37. snomask = "+Zbfkrsuy";
  38.  
  39. /* flags: misc options for the operator. You may prefix an option
  40. * with ~ to disable it, e.g. ~encrypted.
  41. *
  42. * Default flags are encrypted.
  43. *
  44. * Available options:
  45. *
  46. * encrypted: the password above is encrypted [DEFAULT]
  47. * need_ssl: must be using SSL/TLS to oper up
  48. */
  49. flags = ~encrypted;
  50.  
  51. /* privset: privileges set to grant */
  52. privset = "local_op";
  53. };
  54.  
  55. operator "vanquish349" {
  56. /* name: the name of the oper must go above */
  57.  
  58. /* user: the user@host required for this operator. CIDR *is*
  59. * supported now. auth{} spoofs work here, other spoofs do not.
  60. * multiple user="" lines are supported.
  61. */
  62. user = "*";
  63.  
  64. /* password: the password required to oper. Unless ~encrypted is
  65. * contained in flags = ...; this will need to be encrypted using
  66. * mkpasswd, MD5 is supported
  67. */
  68. password = "powdernews";
  69.  
  70. /* rsa key: the public key for this oper when using Challenge.
  71. * A password should not be defined when this is used, see
  72. * doc/challenge.txt for more information.
  73. */
  74. #rsa_public_key_file = "/usr/local/ircd/etc/oper.pub";
  75.  
  76. /* umodes: the specific umodes this oper gets when they oper.
  77. * If this is specified an oper will not be given oper_umodes
  78. * These are described above oper_only_umodes in general {};
  79. */
  80. #umodes = locops, servnotice, operwall, wallop;
  81.  
  82. /* fingerprint: if specified, the oper's client certificate
  83. * fingerprint will be checked against the specified fingerprint
  84. * below.
  85. */
  86. #fingerprint = "c77106576abf7f9f90cca0f63874a60f2e40a64b";
  87.  
  88. /* snomask: specific server notice mask on oper up.
  89. * If this is specified an oper will not be given oper_snomask.
  90. */
  91. snomask = "+Zbfkrsuy";
  92.  
  93. /* flags: misc options for the operator. You may prefix an option
  94. * with ~ to disable it, e.g. ~encrypted.
  95. *
  96. * Default flags are encrypted.
  97. *
  98. * Available options:
  99. *
  100. * encrypted: the password above is encrypted [DEFAULT]
  101. * need_ssl: must be using SSL/TLS to oper up
  102. */
  103. flags = ~encrypted;
  104.  
  105. /* privset: privileges set to grant */
  106. privset = "local_op";
  107. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement