Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 21st, 2010 | Syntax: None | Size: 1.08 KB | Hits: 29 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. [Sun Mar 21 21:18:06 2010] - Error binding stream socket to IP 94.254.70                           .70 port 6669 - 94.254.70.70[]:Cannot assign requested address
  2. [Sun Mar 21 21:21:56 2010] - Error binding stream socket to IP 94.254.70                           .70 port 6669 - 192.168.2.4[]:Cannot assign requested address
  3. [Sun Mar 21 21:22:32 2010] - Error binding stream socket to IP 196.168.2                           .4 port 6669 - 192.168.2.4[]:Cannot assign requested address
  4. [Sun Mar 21 21:30:28 2010] - Error binding stream socket to IP 196.168.2                           .4 port 6669 - 192.168.2.4[]:Cannot assign requested address
  5.  
  6.  
  7.  
  8.  
  9. #* This binds the ircd to the default ircd ports 6660 to 6669
  10. listen  192.168.2.4:6666
  11. {
  12.    options
  13.    {
  14.       clientsonly;
  15.       java;
  16.    };
  17. };
  18.  
  19. #/* This is a listen block for linking servers */
  20. listen         192.168.2.4:8067
  21.         {
  22.    options
  23.    {
  24.           serversonly;
  25.     };
  26. };
  27.  
  28. #/* This is the listen block for ssl connections */
  29. listen          196.168.2.4:6669
  30. {
  31.     options
  32.    {
  33.     clientsonly;
  34.     ssl;
  35.    };
  36. };