0

I installed X-chat on Ubuntu 14.04.

in the first step I enter all the details (nickname, realname etc) and choose freenode as server and click Connect.

But I see the following error:

Looking up irc.freenode.net
* Connecting to chat.freenode.net (94.125.182.252) port 8001...

and nothing happens and there is a timeout error.

and when I type:

/join #python

I see the following:

Not connected. Try /server <host> [<port>]
asksjk
  • 1

2 Answers2

0

You aren't connecting to the IRC port. Your client is specifying port 8001 but you need to connect to 6667

ivanivan
  • 2,155
  • 2
  • 10
  • 11
  • same with 6667: Connecting to `chat.freenode.net (82.96.64.4) port 6667...' ` – asksjk Dec 22 '16 at 16:15
  • 1
    I can connect to that ip/port just fine. can also connect using chat.freenode.net and irc.freenode.net - something else somewhere is blocking you.... – ivanivan Dec 22 '16 at 16:17
  • chat.freenode.net supports ports 6665 to 6667 and 8000 to 8002, so actually 8001 is a valid port: https://freenode.net/kb/answer/chat – braindigitalis Jan 04 '17 at 15:21
0

Check that you and your provider are not blocking port 6667.

To test this, fire up a terminal and type:

telnet chat.freenode.net 6667

Examine the output to see if the command succeeds (if it does, you'll be presented with freenode's welcome banner):

$ telnet chat.freenode.net 6667
Trying 35.156.219.172...
Connected to chat.freenode.net.
Escape character is '^]'.
:jackson.freenode.net NOTICE * :*** Looking up your hostname...
:jackson.freenode.net NOTICE * :*** Checking Ident
:jackson.freenode.net NOTICE * :*** Found your hostname

If it does not, examine your network configuration, firewall, router and anything at your provider that may block that outbound port.

Some providers, especially schools and colleges, block port 6667 for security and you should try one of freenode's many other ports instead: https://freenode.net/kb/answer/chat

braindigitalis
  • 524
  • 7
  • 19