28

I want to list my available upnp/dlna renderers on my local network in console mode.

I can do that with gupnp but not in console mode

Jussi Kukkonen
  • 13,857
  • 1
  • 37
  • 54
scanpat
  • 309
  • 1
  • 4
  • 8

1 Answers1

59

gssdp-discover (from gupnp-tools) will list devices and services advertized over SSDP:

gssdp-discover -i wlan0 --timeout=3

You can also specify the target (as uuid or a service/device type):

gssdp-discover -i wlan0  --timeout=3 --target=urn:schemas-upnp-org:device:MediaRenderer:1
Jussi Kukkonen
  • 13,857
  • 1
  • 37
  • 54