Advertisement
FireFightSec

Untitled

Sep 10th, 2013
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. loadmodule "src/modules/commands.so";
  2. loadmodule "src/modules/cloak.so";
  3.  
  4. ####################
  5. #Admin Information
  6. ####################
  7.  
  8. admin {
  9. "*****";
  10. };
  11.  
  12. ####################
  13. #Classes
  14. ####################
  15. class clients {
  16. pingfreq 90;
  17. maxclients 500;
  18. sendq 100000;
  19. recvq 8000;
  20. };
  21.  
  22. class servers {
  23. pingfreq 90;
  24. maxclients 10;
  25. sendq 1000000;
  26. connfreq 100;
  27. };
  28.  
  29. ####################
  30. #OP(s)
  31. ####################
  32. oper ****** {
  33. class clients;
  34. from {
  35. userhost *.ph.ph.cox.net;
  36. };
  37. password "*************";
  38. flags {
  39. netadmin;
  40. can_gkline;
  41. can_gzline;
  42. can_zline;
  43. can_restart;
  44. can_die;
  45. can_override;
  46. global;
  47. };
  48. swhois "ServerOwner";
  49. snomask **********;
  50. };
  51.  
  52. ####################
  53. #Server Information
  54. ####################
  55.  
  56. me {
  57. name "irc.trollarch.us";
  58. info "Trollarchserver";
  59. numeric 1;
  60. };
  61.  
  62. ####################
  63. #Who to Allow
  64. ####################
  65. allow {
  66. ip *;
  67. hostname *;
  68. class clients;
  69. maxperip 5;
  70. };
  71.  
  72. ####################
  73. #Ports to Listen On
  74. ####################
  75. listen *:6660-6669 {
  76. options {
  77. clientsonly;
  78. };
  79. };
  80.  
  81. ####################
  82. #Restart/Kill Pass
  83. ####################
  84. drpass {
  85. restart "*************";
  86. die "*************";
  87. };
  88.  
  89. ####################
  90. #Logs
  91. ####################
  92. log ircd.log {
  93. maxsize 5MB;
  94. flags {
  95. errors;
  96. kills;
  97. oper;
  98. tkl;
  99. };
  100. };
  101.  
  102. ####################
  103. #Prevented Nicks
  104. ####################
  105. ban nick {
  106. mask "*C*h*a*n*S*e*r*v*";
  107. reason "Reserved for Services";
  108. };
  109.  
  110. ####################
  111. #Services Server
  112. ####################
  113. link services.trollarch.us
  114. {
  115. username *;
  116. hostname localhost;
  117. bind-ip *;
  118. hub *;
  119. port 7070;
  120. password-connect "*************";
  121. password-receive "*************";
  122. class servers;
  123. };
  124.  
  125. ulines {
  126. services.trollarch.us;
  127. };
  128.  
  129. ####################
  130. #Official Servers
  131. ####################
  132. official-channels {
  133. "#Help" { topic "The official help channel, if nobody is present type /helpop helpme"; };
  134. "#Lobby";
  135. "#General" { topic "The main channel"; };
  136. };
  137.  
  138. ####################
  139. #Set
  140. ####################
  141. set {
  142. kline-address "http://www.hackforums.net/private.php?action=send&uid=1964974";
  143. maxchannelsperuser 10;
  144. default-server none;
  145. services-server irc.trollarch.us;
  146. network-name "Trollarch Unlogged";
  147. hosts {
  148. global "ircop.trollarch.us";
  149. coadmin "coadmin.trollarch.us";
  150. admin "admin.trollarch.us";
  151. servicesadmin "csops.trollarch.us";
  152. netadmin "netadmin.trollarch.us";
  153. };
  154. help-channel "#help";
  155. hiddenhost-prefix "clk";
  156. cloak-keys {
  157. "*************";
  158. "*************";
  159. "*************";
  160. };
  161. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement