Advertisement
Guest User

ngircd.conf

a guest
Aug 20th, 2012
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.81 KB | None | 0 0
  1. #
  2. # This is only a sample configuration for Debian
  3. #
  4. # The original can be found at:
  5. # /usr/share/doc/ngircd/examples/sample-ngircd.conf.gz
  6.  
  7. [Global]
  8.  
  9. # The [Global] section of this file is used to define the main
  10. # configuration of the server, like the server name and the ports
  11. # on which the server should be listening.
  12.  
  13. # Server name in the IRC network, must contain at least one dot
  14. # (".") and be unique in the IRC network. Required!
  15. Name = baldur.abacom.net
  16.  
  17. # Info text of the server. This will be shown by WHOIS and
  18. # LINKS requests for example.
  19. Info = IRC Server der xxx IT GmbH
  20.  
  21. # Global password for all users needed to connect to the server
  22. ;Password = wealllikedebian
  23.  
  24. # Information about the server and the administrator, used by the
  25. # ADMIN command. Not required by server but by RFC!
  26. AdminInfo1 = SaKe
  27. AdminInfo2 = nick SaKe
  28. AdminEMail = sk@xxx-it.de
  29.  
  30. # Ports on which the server should listen. There may be more than
  31. # one port, separated with ",". (Default: 6667)
  32. Ports = 6667
  33.  
  34. # IP address on which the server should listen. (Default: empty,
  35. # so the server listens on all IP addresses of the system)
  36. ;Listen = xxx.xxx.xxx.xxx
  37.  
  38. # Text file with the "message of the day" (MOTD). This message will
  39. # be shown to all users connecting to the server:
  40. MotdFile = /etc/ngircd/ngircd.motd
  41.  
  42. # A simple Phrase (<256 chars) if you don't want to use a motd file.
  43. # If it is set no MotdFile will be read at all.
  44. ;MotdPhrase = "Herzlich Willkommen auf dem IRC Server der XXX IT GmbH"
  45.  
  46. # Do NOT change this on Debian! It runs with the default user 'irc'
  47. ;ServerUID = 65534
  48. ;ServerGID = 65534
  49. # Do NOT change this on Debian! The Initscript takes care of this file!
  50. PidFile = /var/run/ngircd/ngircd.pid
  51.  
  52. # After <PingTimeout> seconds of inactivity the server will send a
  53. # PING to the peer to test whether it is alive or not.
  54. PingTimeout = 120
  55.  
  56. # If a client fails to answer a PING with a PONG within <PongTimeout>
  57. # seconds, it will be disconnected by the server.
  58. PongTimeout = 20
  59.  
  60. # The server tries every <ConnectRetry> seconds to establish a link
  61. # to not yet (or no longer) connected servers.
  62. ConnectRetry = 60
  63.  
  64. # Should IRC Operators be allowed to use the MODE command even if
  65. # they are not(!) channel-operators?
  66. OperCanUseMode = yes
  67.  
  68. # Maximum number of simultaneous connection the server is allowed
  69. # to accept (<=0: unlimited):
  70. MaxConnections = 500
  71.  
  72. # Maximum number of simultaneous connections from a single IP address
  73. # the server will accept (<=0: unlimited):
  74. MaxConnectionsIP = 20
  75.  
  76. # Maximum number of channels a user can be member of (<=0: no limit):
  77. MaxJoins = 10
  78.  
  79. [Operator]
  80. # [Operator] sections are used to define IRC Operators. There may be
  81. # more than one [Operator] block, one for each local operator.
  82.  
  83. # ID of the operator (may be different of the nick name)
  84. Name = SaKe
  85.  
  86. # Password of the IRC operator
  87. Password = agx5314
  88.  
  89. [Server]
  90. # Other servers are configured in [Server] sections. If you
  91. # configure a port for the connection, then this ngircd tries to
  92. # connect to to the other server on the given port; if not it waits
  93. # for the other server to connect.
  94. # There may be more than one server block.
  95. #
  96. # Server Groups:
  97. # The ngIRCd allows "server groups": You can assign an "ID" to every
  98. # server with which you want this ngIRCd to link. If a server of a
  99. # group won't answer, the ngIRCd tries to connect to the next server
  100. # in the given group. But the ngircd never tries to connect to two
  101. # servers with the same group ID.
  102.  
  103. # IRC name of the server
  104. ;Name = irc2.debian.org
  105.  
  106. # Internet host name of the peer
  107. ;Host = connect-to-host.the.net
  108.  
  109. # Port of the server to which the ngIRCd should connect. If you
  110. # assign no port the ngIRCd waits for incoming connections.
  111. ;Port = 6666
  112.  
  113. # Own password for the connection. This password has to be configured
  114. # as "PeerPassword" on the other server.
  115. ;MyPassword = MySecret
  116.  
  117. # Foreign password for this connection. This password has to be
  118. # configured as "MyPassword" on the other server.
  119. ;PeerPassword = PeerSecret
  120.  
  121. # Group of this server (optional)
  122. ;Group = 123
  123.  
  124.  
  125. Name = baldur.xxx-it.de
  126. Port = 6667
  127. MyPassword = agx5314
  128. PeerPassword = agx5314
  129. #ServiceMask = *Serv
  130.  
  131. [Channel]
  132. # Pre-defined channels can be configured in [Channel] sections.
  133. # Such channels are created by the server when starting up and even
  134. # persist when there are no more members left.
  135. # Persistent channels are marked with the mode 'P', which can be set
  136. # and unset by IRC operators like other modes on the fly.
  137. # There may be more than one [Channel] block.
  138.  
  139. # Name of the channel
  140. #Name = #support
  141.  
  142. # Topic for this channel
  143. #Topic = Support Channel der xxx IT GmbH
  144.  
  145. # Initial channel modes
  146. #Modes = tn
  147.  
  148. # -eof-
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement