Advertisement
Guest User

unrealircd.conf

a guest
Nov 15th, 2011
6,660
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.24 KB | None | 0 0
  1. #Example UnrealIRCd 3.2.8.1 configuration file
  2. #Written by Mp5shooter for the SwiftIRC Wiki
  3. #http://wiki.SwiftIRC.net/
  4.  
  5. /* If your server is running Linux, remove the two slashes in front of both of the following lines. */
  6. loadmodule "src/modules/commands.so";
  7. loadmodule "src/modules/cloak.so";
  8.  
  9. /* If your server is running Windows, remove the two slashes in front of both of the following lines. */
  10. //loadmodule "modules/commands.dll";
  11. //loadmodule "modules/cloak.dll";
  12.  
  13. #This is the me {} block
  14. me {
  15. name "204.174.60.213";
  16. info "Sabot Server";
  17. numeric 1;
  18. };
  19.  
  20. #This is the admin {} block
  21. admin {
  22. "sab0t";
  23. "s4b.null@gmail.com";
  24. };
  25.  
  26. class clients
  27. {
  28. pingfreq 90;
  29. maxclients 500;
  30. sendq 100000;
  31. recvq 8000;
  32. };
  33.  
  34. class servers
  35. {
  36. pingfreq 90;
  37. maxclients 10; /* Max servers we can have linked at a time */
  38. sendq 1000000;
  39. connfreq 100; /* How many seconds between each connection attempt */
  40. };
  41.  
  42. #This is the oper {} block
  43. oper sab0t {
  44. class clients;
  45. from {
  46. userhost sab0t@184.66.14.221;
  47. };
  48. password "nullnull";
  49. flags
  50. {
  51. netadmin;
  52. can_zline;
  53. can_gzline;
  54. can_gkline;
  55. global;
  56. };
  57. };
  58.  
  59. #This is the services link block
  60. /*
  61. link 204.174.60.213
  62. {
  63. username *;
  64. hostname 127.0.0.1;
  65. bind-ip *;
  66. port 6667;
  67. hub *;
  68. password-connect "passw0rd";
  69. password-receive "passw0rd";
  70. class servers;
  71. };
  72.  
  73.  
  74. #This is the ulines block
  75. ulines {
  76. 204.174.60.213;
  77. };
  78. */
  79. #START OF BAN BLOCKS
  80. ban nick {
  81. mask "*C*h*a*n*S*e*r*v*";
  82. reason "Reserved for Services";
  83. };
  84.  
  85. ban ip {
  86. mask 195.86.232.81;
  87. reason "Noob";
  88. };
  89.  
  90. ban user {
  91. mask *tirc@*.saturn.bbn.com;
  92. reason "Idiot";
  93. };
  94.  
  95. ban realname {
  96. mask "Swat Team";
  97. reason "mIRKFORCE";
  98. };
  99.  
  100. except ban {
  101. /* don't ban Mp5shooter :) */
  102. mask *Mp5shooter@adsl-074*;
  103. };
  104.  
  105. deny channel {
  106. channel "*warez*";
  107. reason "Warez is illegal";
  108. };
  109. #END OF BAN BLOCKS
  110.  
  111. #This is the vHost block
  112. vhost {
  113. vhost super.cool.irc.dude;
  114. from {
  115. userhost *@*;
  116. };
  117. login YourName;
  118. password LovingTheKwlHost;
  119. };
  120.  
  121. #This is the network settings block
  122. set {
  123. network-name "204.174.60.213";
  124. default-server "irc.204.174.60.213";
  125. services-server "services.204.174.60.213";
  126. stats-server "stats.204.174.60.213";
  127. help-channel "#Help";
  128. hiddenhost-prefix "sab";
  129. cloak-keys {
  130. "KIuoehnfOush230uNSDL309subnsA";
  131. "Jk93uKLsd30skSHNfelfew2ghfdKHd3ws";
  132. "Iehnludhnfe83KLBDHef39ekHBD44";
  133. };
  134. hosts {
  135. local "locop.204.174.60.213";
  136. global "ircop.204.174.60.213";
  137. coadmin "coadmin.204.174.60.213";
  138. admin "admin.204.174.60.213";
  139. servicesadmin "csops.204.174.60.213";
  140. netadmin "netadmin.204.174.60.213";
  141. host-on-oper-up "no";
  142. };
  143. };
  144.  
  145. #This is the server settings block
  146. set {
  147. kline-address "s4b.null@gmail.com";
  148. modes-on-connect "+ix";
  149. modes-on-oper "+xwgs";
  150. oper-auto-join "#opers";
  151. options {
  152. show-connect-info;
  153. };
  154. maxchannelsperuser 30;
  155. anti-spam-quit-message-time 10s;
  156. oper-only-stats "okfGsMRUEelLCXzdD";
  157. throttle {
  158. connections 3;
  159. period 60s;
  160. };
  161. anti-flood {
  162. nick-flood 3:60;
  163. };
  164. spamfilter {
  165. ban-time 1d;
  166. ban-reason "Spam/Advertising";
  167. virus-help-channel "#help";
  168. };
  169. };
  170.  
  171. #Do not edit anything below this line, unless you know what you are doing
  172.  
  173. include "help.conf";
  174. include "badwords.channel.conf";
  175. include "badwords.message.conf";
  176. include "badwords.quit.conf";
  177. include "spamfilter.conf";
  178.  
  179. class clients
  180. {
  181. pingfreq 90;
  182. maxclients 500;
  183. sendq 100000;
  184. recvq 8000;
  185. };
  186.  
  187. class servers
  188. {
  189. pingfreq 90;
  190. maxclients 10;
  191. sendq 1000000;
  192. connfreq 100;
  193. };
  194.  
  195. allow {
  196. ip *@*;
  197. hostname *@*;
  198. class clients;
  199. maxperip 5;
  200. };
  201.  
  202. listen 204.174.60.213:5000;
  203.  
  204.  
  205. log "ircd.log" {
  206. maxsize 2097152;
  207. flags {
  208. oper;
  209. kline;
  210. connects;
  211. server-connects;
  212. kills;
  213. errors;
  214. sadmin-commands;
  215. chg-commands;
  216. oper-override;
  217. spamfilter;
  218. };
  219. };
  220.  
  221. alias NickServ { type services; };
  222. alias ChanServ { type services; };
  223. alias OperServ { type services; };
  224. alias HelpServ { type services; };
  225. include "aliases/anope.conf";
  226.  
  227.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement