Guest User

Untitled

a guest
May 21st, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. /* listen {}: contain information about the ports ircd listens on (OLD P:) */
  2. listen {
  3. /* port: the specific port to listen on. if no host is specified
  4. * before, it will listen on all available IPs.
  5. *
  6. * ports are seperated via a comma, a range may be specified using ".."
  7. */
  8.  
  9. /* aftype: accepts either ipv4 or ipv6 as the IP type to use
  10. * when the address to bind to is not specified
  11. */
  12. aftype = ipv4;
  13.  
  14. /* port: listen on all available IPs, ports 5000 and 6665 to 6669 */
  15. port = 6667;
  16.  
  17. /* listen on :: on port 7003 */
  18. aftype = ipv6;
  19. port = 7003;
  20.  
  21. /* host: set a specific IP/host the ports after the line will listen
  22. * on. This may be ipv4 or ipv6.
  23. */
  24. host = "46.182.107.73";
  25. port = 6667;
  26.  
  27. host = "2a02:2a38:1:573:1::1c";
  28. port = 7003;
  29.  
  30. /* sslport sets up an SSL/TLS listener, otherwise it acts just like
  31. * the port option above
  32. */
  33. sslport = 9999;
  34. };
Add Comment
Please, Sign In to add comment