Port 427 is the SLP (Service Location Protocol) port for automatic service discovery on local networks. SLP enables printers, file servers, and other devices to announce their presence without manual configuration. SLP has no authentication – exposed instances can be abused for DDoS amplification attacks.
Port Number
427
Protocol
TCP/UDP
Service
Service Location Protocol
Range
IANA Well-Known (0–1023)
Probe for SLP service agent (should fail if properly blocked)
nmap -sU -p 427 --script=slp-discovery targetDiscover all SLP service types on the local network
slptool findsrvtypesVMware ESXi: check SLP statistics and whether daemon is active
esxcli system slp stats getCheck if anything is listening on SLP port locally
ss -ulnp | grep 427slptool findsrvtypes
slptool findsrvs service:printer
nmap -sU -p 427 targetSLP (Service Location Protocol) was standardized in RFC 2608 (1999) for automatic service discovery in enterprise networks (printers, file servers, directories). Port 427 was assigned by IANA for both TCP and UDP. It predates mDNS/DNS-SD (2002) and was widely adopted by VMware, HP, and Novell. The protocol was largely forgotten by administrators until CVE-2023-29552 revealed 54,000+ exposed instances being weaponized for DDoS amplification.
How do I disable SLP on VMware ESXi?
ESXi 7.0+: esxcli network firewall ruleset set -e false -r CIMSLP && /etc/init.d/slpd stop. ESXi 8.0: SLP is disabled by default. For permanent: add /etc/init.d/slpd stop to /etc/rc.local.d/local.sh. VMware released patches for CVE-2023-29552 – apply ESXi patches if you can't disable SLP. Also block UDP/TCP 427 at the virtual switch level.
Why is SLP amplification so severe compared to other protocols?
SLP amplification reaches 2,200x because: (1) the protocol supports service type queries that return large lists of all registered services, (2) responses include full service URLs with attributes (hundreds of bytes per entry), (3) UDP means no handshake – spoofed source IP gets the response. For comparison: DNS amplification is ~50x, NTP ~500x, Memcached ~51,000x. SLP sits between NTP and Memcached in severity.