TCPRegistered PortFirewall: Usually Closed
6661

IRC (alternate)

What is Port 6661?

Port 6661 is part of the 6660-6669 range commonly used for IRC (Internet Relay Chat) server connections. IRC servers typically listen on multiple ports in this range to provide connectivity options. The use of multiple ports allows networks to distribute connections and accommodate users on networks with different port restrictions. Like other ports in this range, connections on port 6661 are unencrypted. IRC remains active in developer communities, open-source projects, and security research circles. Modern IRC networks encourage users to connect via TLS-encrypted port 6697 instead of the unencrypted ports in this range.

Common Uses

  • IRC server connections
  • IRC network alternative connection port
  • IRC bouncer connections
  • Developer community chat

Technical Details

Port Number6661
ProtocolTCP
CategoryRegistered
Service NameIRC (alternate)
Default FirewallUsually Closed
Port Test Commands

Copy-paste commands to check port 6661 (IRC (alternate)) from your terminal

Test connectivity

Netcat (nc)Check if TCP port is reachable
nc -zv example.com 6661
curl (HTTP)Test HTTP response on this port
curl -v --max-time 5 http://example.com:6661/
TelnetBasic TCP port connectivity check
telnet example.com 6661
nmapScan port 6661 with service detection
nmap -p 6661 -sV example.com
Bash /dev/tcpPure bash TCP check (no extra tools needed)
(echo > /dev/tcp/example.com/6661) 2>/dev/null && echo "open" || echo "closed"

Open port in firewall

UFW (Ubuntu / Debian)
sudo ufw allow 6661/tcp
iptables
sudo iptables -A INPUT -p tcp --dport 6661 -j ACCEPT
firewalld (RHEL / CentOS)
sudo firewall-cmd --permanent --add-port=6661/tcp && sudo firewall-cmd --reload

Security Considerations

!

Unencrypted IRC traffic is visible to network observers. Use port 6697 with TLS for encrypted connections. Monitor for unauthorized IRC usage as it can indicate botnet command-and-control activity. Implement SASL authentication.

Popular Ports Reference

The most commonly used and referenced network ports

Related Ports