Skip to main content
Back to Home

Network Port: 11211

Network Port Reference Guide

Registered Service Name

Memcached Caching

Transport Protocol

TCP/UDP

Functional Overview

Port 11211 is used by Memcached high-performance memory object caching system.

Security Risks & Vulnerabilities

Historically exploited for massive Memcrashed UDP amplification DDoS attacks with 50,000x amplification factors. Disable UDP on port 11211 immediately.

How to audit network port status

1. Scan Open Ports: Use our Port Scanner utility to verify if this port is actively listening on your host.

2. Verify Encryption: Audit the service layer to confirm SSL/TLS is protecting transmission payload.

3. Hardening Rules: Apply the firewall instructions below to shut down unauthorized inbound ports.

UFW Firewall Rules

Allow Command

sudo ufw allow 11211/tcp

Block Command

sudo ufw deny 11211/tcp

iptables Firewall Rules

Allow Command

sudo iptables -A INPUT -p tcp --dport 11211 -j ACCEPT

Block Command

sudo iptables -A INPUT -p tcp --dport 11211 -j DROP