BothRegistered PortFirewall: Usually Closed
6882

BitTorrent

What is Port 6882?

Port 6882 is part of the traditional BitTorrent port range (6881-6889). BitTorrent clients historically used sequential ports starting from 6881, with each additional instance or client using the next available port. If port 6881 is in use, the client tries 6882, then 6883, and so on. Modern BitTorrent clients like qBittorrent, Transmission, and Deluge typically use random high ports instead, partly to avoid ISP throttling that specifically targets the well-known BitTorrent range. The port functions identically to port 6881 for incoming peer connections in the BitTorrent swarm.

Common Uses

  • BitTorrent peer connections
  • Alternative BitTorrent listening port
  • Peer-to-peer file sharing
  • Torrent client fallback port

Technical Details

Port Number6882
ProtocolTCP + UDP
CategoryRegistered
Service NameBitTorrent
Default FirewallUsually Closed
Port Test Commands

Copy-paste commands to check port 6882 (BitTorrent) from your terminal

Test connectivity

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

Open port in firewall

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

Security Considerations

!

Same considerations as port 6881. ISP throttling is common on this range. Use random ports and VPN for BitTorrent.

Popular Ports Reference

The most commonly used and referenced network ports

Related Ports