Disabling SSDP (Linux / Windows)

Some consumer-level equipment uses SSDP for network discovery. It has no real use on public servers and is used to launch reflection DDoS attacks against dedicated servers.

Windows machines

On Windows machines, SSDP is run through the ‘SSDP Discovery’ service. To disable this:

  1. Click Start, type services.msc

  2. Find the SSDP service, right-click it, and choose Properties

  3. Change Startup Type to Disabled

  4. Click Stop

  5. Click OK

On Linux machines, SSDP is generally run through some type of UPNP server. The exact one varies significantly.

For Linux, we suggest blocking this with an iptables rule, such as:

iptables -I INPUT 1 -p udp -m udp –dport 1900 -j DROP