Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.09 KB | None | 0 0
  1. loadmodule "src/modules/commands.so";
  2. loadmodule "src/modules/cloak.so";
  3.  
  4. include "help.conf";
  5. include "spamfilter.conf";
  6. include "badwords.channel.conf";
  7. include "badwords.message.conf";
  8. include "badwords.quit.conf";
  9.  
  10. set {
  11. network-name "ProTechInfo";
  12. default-server "127.0.0.1";
  13. default-bantime 1d;
  14. help-channel "#Aide";
  15. prefix-quit "Quit:";
  16. kline-address "techdesk@gmail.com";
  17. gline-address "techdesk@gmail.com";
  18.  
  19. services-server "Anope.ProTechInfo";
  20. hiddenhost-prefix "ProTechInfo";
  21.  
  22. modes-on-connect "+x";
  23. modes-on-join "+ntCT";
  24. modes-on-oper "+xwgpqHsWi";
  25. snomask-on-oper "+cefFGjknNoqsSv";
  26. restrict-usermodes "wksfGB";
  27. restrict-channelmodes "k";
  28.  
  29. maxchannelsperuser 30;
  30. oper-only-stats "*";
  31. anti-spam-quit-message-time 60s;
  32. auto-join "#ProTechInfo";
  33. oper-auto-join "#Staff,#Services";
  34. cloak-keys {
  35. "ProTechInfo9ca154-302stxoem";
  36. "ProTech9ca154-302stxoemInfo";
  37. "Pro9ca154-302stxoemTechInfo";
  38.  
  39. };
  40. hosts {
  41. local "Geo.ProTechInfo.net";
  42. global "IRCop.ProTechInfo.net";
  43. coadmin "CoAdmin.ProTechInfo.net";
  44. admin "Admin.ProTechInfo.net";
  45. servicesadmin "ServicesAdmin.ProTechInfo.net";
  46. netadmin "NetAdmin.ProTechInfo.net";
  47. host-on-oper-up "yes";
  48. };
  49. ssl {
  50. certificate "server.cert.pem";
  51. key "server.key.pem";
  52. };
  53. dns {
  54. nameserver 127.0.0.1;
  55. timeout 2s;
  56. retries 3;
  57. };
  58. options {
  59. identd-check;
  60. hide-ulines;
  61. show-connect-info;
  62. show-opermotd;
  63. flat-map;
  64. };
  65. throttle {
  66. connections 4;
  67. period 30s;
  68. };
  69. anti-flood {
  70. nick-flood 4:60;
  71. };
  72. spamfilter {
  73. ban-time 1d;
  74. ban-reason "Protection Spamfilter";
  75. virus-help-channel "#Securite";
  76. virus-help-channel-deny "yes";
  77. };
  78. allowed-nickchars {
  79. latin1;
  80. };
  81. timesynch {
  82. enabled no;
  83. };
  84.  
  85. };
  86. ######
  87. # Me #
  88. ######
  89. me {
  90. name "ProTechInfo.net";
  91. info "Serveur ProTechInformatique";
  92. numeric 1;
  93. };
  94.  
  95. #########
  96. # Admin #
  97. #########
  98.  
  99. admin {
  100. "Réseau IRC ProTechInformatique";
  101. "Administrateurs : TechDesk";
  102. "Informations : techdesk@gmail.com";
  103. };
  104.  
  105. ##########
  106. # Drpass #
  107. ##########
  108.  
  109. drpass {
  110. restart "restart";
  111. die "die";
  112. };
  113.  
  114. #######
  115. # Log #
  116. #######
  117.  
  118. log "ircd.log" {
  119. maxsize 2097152;
  120. flags {
  121. oper;
  122. kline;
  123. connects;
  124. server-connects;
  125. kills;
  126. errors;
  127. sadmin-commands;
  128. chg-commands;
  129. oper-override;
  130. spamfilter;
  131. tkl;
  132. oper-override;
  133. };
  134. };
  135.  
  136. ##########
  137. # Listen #
  138. ##########
  139.  
  140. listen *:6667;
  141.  
  142. #########
  143. # Class #
  144. #########
  145.  
  146. class clients {
  147. pingfreq 90;
  148. maxclients 2000;
  149. sendq 100000;
  150. recvq 8000;
  151. };
  152.  
  153. class servers {
  154. pingfreq 90;
  155. maxclients 50;
  156. sendq 2000000;
  157. connfreq 120;
  158. };
  159.  
  160. #########
  161. # Allow #
  162. #########
  163.  
  164. allow {
  165. ip *;
  166. hostname *;
  167. class clients;
  168. maxperip 3;
  169. };
  170.  
  171. allow {
  172. ip 127.0.0.1;
  173. hostname *@*;
  174. class clients;
  175. maxperip 200;
  176. };
  177.  
  178. ulines {
  179. Service.ProTechInfo.net;
  180. };
  181.  
  182. link services.ProTechInfo.net {
  183.         username *;
  184.         hostname 78.114.169.54;
  185.         bind-ip *;
  186.         port 6667;
  187.         hub *;
  188.         password-connect "9ca154-302stxoem";
  189.         password-receive "9ca154-302stxoem";
  190.         class servers;
  191. };
  192.  
  193. ###############
  194. # Olines User #
  195. ###############
  196.  
  197. oper TechDesk {
  198. class clients;
  199. from {
  200. userhost *@*;
  201. };
  202. password "nissan204";
  203. flags {
  204. netadmin;
  205. global;
  206. get_umodew;
  207. get_host;
  208. can_gkline;
  209. can_gzline;
  210. can_zline;
  211. can_restart;
  212. can_die;
  213. can_override;
  214. };
  215. maxlogins 1;
  216. };
  217.  
  218. oper sKyMiKe03 {
  219. class clients;
  220. from {
  221. userhost *@*;
  222. };
  223. password "skymike03";
  224. flags {
  225. netadmin;
  226. global;
  227. get_umodew;
  228. get_host;
  229. can_gkline;
  230. can_gzline;
  231. can_zline;
  232. can_restart;
  233. can_die;
  234. can_override;
  235. };
  236. maxlogins 1;
  237. };
  238.  
  239. /*
  240. ** Il est possible de placer un mot de passe chiffré comme mot de passe OPER,
  241. ** pour plus d'informations, référez vous à la documentation officielle
  242. ** (lien fourni au début du document)
  243. */
  244.  
  245.  
  246. /* * * * * * * * *
  247. * Liste de Flag *
  248. ** * * * * * * * *
  249. * *
  250. * OLD OPER FLAG | NEW FLAG NAME *
  251. * O global *
  252. * o local *
  253. * a services-admin *
  254. * A admin *
  255. * r can_rehash *
  256. * D can_die *
  257. * R can_restart *
  258. * h helpop *
  259. * w can_wallops *
  260. * g can_globops *
  261. * c can_localroute *
  262. * L can_globalroute *
  263. * k can_localkill *
  264. * K can_globalkill *
  265. * b can_kline *
  266. * Z can_gzline *
  267. * t can_gkline *
  268. * B can_unkline *
  269. * n can_localnotice *
  270. * G can_globalnotice *
  271. * N netadmin *
  272. * C coadmin *
  273. * z can_zline *
  274. * W get_umodew *
  275. * H get_host *
  276. * v can_override *
  277. * * * * * * * * * * * * * * * **/
  278.  
  279. ##################
  280. # Protection Ban #
  281. ##################
  282.  
  283. except ban {
  284. mask "*@localhost";
  285. };
  286.  
  287. except ban {
  288. mask "*@localhost";
  289. };
  290.  
  291. except ban {
  292. mask "*@127.0.0.1";
  293. };
  294.  
  295. #######################
  296. # Protection Throttle #
  297. #######################
  298.  
  299. except throttle {
  300. mask "*@localhost";
  301. };
  302.  
  303. except throttle {
  304. mask "*@127.0.0.1";
  305. };
  306.  
  307. except throttle {
  308. mask "*@127.0.0.1";
  309. };
  310.  
  311. ######################
  312. ## Salons Officiels ##
  313. ######################
  314.  
  315. official-channels {
  316. "#ProTechInfo";
  317. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement