Guest User

unrealircd.conf

a guest
Jan 17th, 2017
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 KB | None | 0 0
  1. /** Unreal Config **/
  2.  
  3. loadmodule "src/modules/commands.so";
  4. loadmodule "src/modules/cloak.so";
  5. include "help.conf";
  6.  
  7. me
  8. {
  9. name "irc.BalkanIrc.com"; // irc server name
  10. info "Mjesto za druzenje i zabavu:)";
  11. numeric 42;
  12. };
  13.  
  14. admin {
  15. "klejz0r";
  16. };
  17.  
  18. class clients
  19. {
  20. pingfreq 90;
  21. maxclients 64000;
  22. sendq 100000;
  23. recvq 30000;
  24. };
  25.  
  26. allow {
  27. ip *@*;
  28. hostname *@*;
  29. class clients;
  30. maxperip 3;
  31. };
  32.  
  33. /* Allows users to create/join specific channels */
  34. allow channel {
  35. channel "#xyz";
  36. };
  37.  
  38. /* IRC OPER BLOCK */
  39. oper klejz0r { // change USER to the desired username
  40. class clients;
  41. from {
  42. userhost *@*;
  43. };
  44. password "123321"; // change pass to the desired password
  45. flags "+oOCAaNrDRhwgcLKkbBnGztZWHvqXdv";
  46. maxlogins 2;
  47. };
  48.  
  49. listen 162.213.38.64:6667; //IRC Port; choose desired port (1 - 65000)
  50. listen 162.213.38.64:7000;
  51.  
  52. link services.balkanirc.com
  53. {
  54. username *;
  55. hostname *;
  56. bind-ip 162.213.38.64;
  57. port 7000;
  58. hub *;
  59. password-connect "mojasifra";
  60. password-receive "mojasifra";
  61. class servers;
  62. };
  63. ulines { services.balkanirc.com; };
  64. listen 162.213.38.64:7000;
  65.  
  66.  
  67. drpass {
  68. restart "RESTARTPASS"; // password for restarting the server from your IRC client
  69. die "DIEPASS"; // password for shutting down the server from your IRC client
  70. };
  71.  
  72. log "ircd.log" {
  73. maxsize 20;
  74. flags {
  75. errors;
  76. };
  77. };
  78.  
  79. tld {
  80. mask *@*;
  81. motd "ircd.motd";
  82. rules "ircd.rules";
  83. };
  84.  
  85. set {
  86. network-name "BalkanIrc"; //network name
  87. default-server "none.none";
  88. services-server "none.none";
  89. stats-server "none.none";
  90. help-channel "#Pomoc";
  91. auto-join "#Chat";
  92. hiddenhost-prefix "Null";
  93. cloak-keys {
  94. "aoAr4xnR6pl3stttVz4Zb7x4Y32f";
  95. "g23e1Hntttl32J7hV55ab7x4YwpW";
  96. "aoAr1HnRxgl3Z57hVtttb7x4Ywqa";
  97. };
  98. hosts {
  99. local "local.balkanirc.com";
  100. global "global.balkanirc.com";
  101. admin "admin.balkanirc.com";
  102. coadmin "coadmin.balkanirc.com";
  103. servicesadmin "services.balkanirc.com";
  104. netadmin "netadmin.balkanirc.com";
  105. host-on-oper-up "no";
  106. };
  107. };
  108.  
  109. set {
  110. kline-address "admin@localhost";
  111. modes-on-connect "+ixw";
  112. modes-on-oper "+xwgs";
  113. options {
  114. hide-ulines;
  115. };
  116. maxchannelsperuser 3;
  117. anti-spam-quit-message-time 30s;
  118. oper-only-stats "*";
  119. throttle {
  120. connections 3;
  121. period 60s;
  122. };
  123. };
  124.  
  125. set {
  126. modes-on-join "+t";
  127. level-on-join "none";
  128. restrict-usermodes "*";
  129. restrict-channelmodes "*";
  130. static-part "yes";
  131. who-limit "1";
  132. };
  133.  
  134. set {
  135. options {
  136. dont-resolve;
  137. };
  138. anti-flood {
  139. nick-flood "1:3360";
  140. };
  141. };
Add Comment
Please, Sign In to add comment