Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Feb 9th, 2010 | Syntax: None | Size: 2.38 KB | Hits: 26 | Expires: Never
Copy text to clipboard
  1. loadmodule "modules/commands.dll";
  2. loadmodule "modules/cloak.dll";
  3.  
  4. me {
  5.         name awesome.test.network;
  6.         info This is "TestNet";
  7.         numeric 1;
  8. };
  9.  
  10. admin {
  11.         "KY";
  12. };
  13.  
  14. class clients {
  15.         pingfreq 90;
  16.         maxclients 500;
  17.         sendq 100000;
  18.         recvq 8000;
  19. };
  20.  
  21. class servers {
  22.         pingfreq 90;
  23.         maxclients 3; /* We really have no need for more than 3 servers, at a time -- Spike */
  24.         sendq 1000000;
  25.         connfreq 100;
  26. };
  27.  
  28. allow {
  29.         ip *;
  30.         hostname *;
  31.         class clients;
  32.         maxperip 10; /* Test network really dosen't care about connection limits. -- Spike */
  33. };
  34.  
  35. listen *:6667 {
  36.         options {
  37.                 clientsonly;
  38.         };
  39. };
  40.  
  41. listen *:9021 {
  42.         options {
  43.                 serversonly;
  44.         };
  45. };
  46.  
  47. oper KY {
  48.         from {
  49.                 userhost *;
  50.         };
  51.         password banana;
  52.         class clients;
  53.         flags {
  54.                 netadmin;
  55.                 can_zline;
  56.                 can_gzline;
  57.                 can_gkline;
  58.         };
  59.         swhois "HI.";
  60.         snomask cefFGjknNoqsSv;
  61.         modes oOaANCghpqsvwxW;
  62.         maxlogins 10;
  63. };
  64.  
  65. oper Rolo {
  66.         from {
  67.                 userhost *;
  68.         };
  69.         password abcd;
  70.         class clients;
  71.         flags {
  72.                 netadmin;
  73.                 can_zline;
  74.                 can_gzline;
  75.                 can_gkline;
  76.         };
  77.         swhois "is a Services Root Administrator";
  78.         snomask cefFGjknNoqsSv;
  79.         modes oOaANCghpqsvwxW;
  80.         maxlogins 10;
  81. };
  82.  
  83. drpass {
  84.         restart "testnetworkrestart";
  85.         die "testnetworkdie";
  86. };
  87.  
  88. include "aliases/anope.conf";
  89.  
  90. log ircd.log {
  91.         maxsize 5MB;
  92.         flags {
  93.                 errors;
  94.                 kills;
  95.                 oper;
  96.                 kline;
  97.                 tkl;
  98.         };
  99. };
  100.  
  101. except ban {
  102.         mask*@pool-71-163-29-231.washdc.fios.verizon.net 71.163.29.231;
  103. };
  104.  
  105. except tkl {
  106.         mask *@pool-71-163-29-231.washdc.fios.verizon.net 71.163.29.231;
  107.         type {
  108.                 gline;
  109.                 gzline;
  110.                 qline;
  111.                 gqline;
  112.                 shun;
  113.         };
  114. };
  115.  
  116. vhost {
  117.         vhost THIS.IS.SPARTA;
  118.         from {
  119.                 userhost *@*;
  120.         };
  121.         login Sparta;
  122.         password thisissparta;
  123.         //swhois "No"; For no swhois, simply don't provide one. That should still work
  124. };
  125.  
  126. ulines {
  127.         hub.awesome.test.network; // Had { instead of ;
  128. };
  129.  
  130. link hub.awesome.test.network {
  131.         username *;
  132.         hostname *;
  133.         bind-ip *;
  134.         port 9021;
  135.         hub *;
  136.         password-connect "macville5";
  137.         password-receive "macville5";
  138.         class servers;
  139. };
  140. //}; too much
  141.  
  142. set {
  143.         kline-address macvilleboy@hotmail.com;
  144.         gline-address macvilleboy@hotmail.com;
  145.         modes-on-connect +xiw;
  146.         modes-on-join +ntR;
  147.         restrict-channelmodes +z;
  148.         cloak-keys { "A2w0X"; "0Ib1N"; "5zQ7O"; };
  149.         hiddenhost-prefix TestNet;
  150.         help-channel #help;
  151.         services-server hub.awesome.test.network;
  152.         network-name TestNet;
  153.         options {
  154.                 hide-ulines;
  155.         };
  156. };