Advertisement
Guest User

Untitled

a guest
Aug 1st, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.28 KB | None | 0 0
  1. General {
  2. # Our naming scheme is <name>.<ISO country code>.AfterNET.Org
  3. name = "YourServer.XX.AfterNET.Org";
  4.  
  5. # Un-comment vhost and fill out with an IP if your server has more than one. You also
  6. # need to uncomment the VIRTUAL_HOST = TRUE block in the features below.
  7. # vhost = "192.168.1.118";
  8.  
  9. # This shows up in /list etc
  10. description = "Badass Client Server";
  11. # Check with net admin to have your numeric assigned
  12. numeric = 99;
  13. };
  14.  
  15. # Afternet admins! Don't add random features without discussing with us.
  16. # Many options are forbidden.
  17. Features {
  18. "LOG" = "SYSTEM" "FILE" "ircd.log";
  19. "LOG" = "SYSTEM" "LEVEL" "CRIT";
  20. # "VIRTUAL_HOST" = "TRUE"; #needed if you have multiple IP addresses on your box, see above
  21. };
  22.  
  23. # This info shows up on the /admin command on your server.
  24. Admin {
  25. Location = "Paris, France";
  26. Location = "AfterNET IRC Network";
  27. Contact = "Your Nick Here";
  28. };
  29.  
  30. # leave the classes alone for the most part.
  31. Class {
  32. name = "Server";
  33. pingfreq = 1 minutes 30 seconds;
  34. connectfreq = 5 minutes;
  35. maxlinks = 1;
  36. sendq = 9000000;
  37. };
  38.  
  39. Class {
  40. name = "LeafServer";
  41. pingfreq = 1 minutes 30 seconds;
  42. connectfreq = 5 minutes;
  43. maxlinks = 0;
  44. sendq = 9000000;
  45. };
  46.  
  47. Class {
  48. name = "Local";
  49. pingfreq = 1 minutes 30 seconds;
  50. maxlinks = 100;
  51. sendq = 160000;
  52. };
  53.  
  54. Class {
  55. name = "Opers";
  56. pingfreq = 1 minutes 30 seconds;
  57. maxlinks = 400;
  58. sendq = 160000;
  59. whois_notice = no;
  60. display_mode = no;
  61. remove = no;
  62. freeform = no;
  63. spamfilter = no;
  64. hide_channels = no;
  65. local_opmode = no;
  66. force_local_opmode = no;
  67. walk_lchan = no;
  68. deop_lchan = no;
  69. mode_lchan = no;
  70. shun = no;
  71. local_shun = no;
  72. gline = no;
  73. local_gline = no;
  74. zline = no;
  75. local_zline = no;
  76. hide_idle = no;
  77. xtraop = no;
  78. };
  79.  
  80. Class {
  81. name = "Users";
  82. pingfreq = 1 minutes 30 seconds;
  83. maxlinks = 4000;
  84. sendq = 160000;
  85. };
  86.  
  87.  
  88. # This is an "I line" block. This one lets everyone in.
  89. Client {
  90. ip = "*";
  91. host = "*";
  92. # username = "*";
  93. class = "Users";
  94. };
  95.  
  96. # Setup your O line
  97. Operator {
  98. host = "*@192.168.1.2";
  99. host = "*@blah.com";
  100. name = "yournick";
  101. password = "yourcryptedpass";
  102. flags = "Or";
  103. class = "Opers";
  104. local = no;
  105. };
  106.  
  107. # This hides host for users on your server only
  108. Spoofhost "foo.bar" {
  109. host = "*.yourrealhost.com";
  110. username = "you";
  111. autoapply = yes;
  112. };
  113.  
  114.  
  115. # Ports. We require these default ports be used. You can also add more if you want.
  116. Port {
  117. port = 4400;
  118. # Add vhosts to bind to only one IP on your system if you have more than one.
  119. # vhost = "193.138.229.18";
  120. server = yes;
  121. };
  122.  
  123. Port {
  124. port = 4497;
  125. server = yes;
  126. crypt = yes;
  127. };
  128.  
  129. Port {
  130. port = 16667;
  131. server = no;
  132. };
  133.  
  134. Port {
  135. port = 6667;
  136. server = no;
  137. };
  138.  
  139. Port {
  140. port = 7000;
  141. server = no;
  142. };
  143.  
  144. Port {
  145. port = 9998;
  146. crypt = yes;
  147. };
  148.  
  149.  
  150. # Do NOT remove the following lines; linesync.sh depends on them!
  151. # BEGIN LINESYNC
  152. # You need to get linesync running so the rest of the net's config will be appended after this.
  153. # END LINESYNC
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement