Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

PropertyDescription
allowed-hostnameTo restrict access to specific hostnames.
allowed-ipTo limit access to specified IP addresses
friendly-nameThe name that will be displayed for the DLNA server on the network.
interfaceSpecifies the network interface that the DLNA server will use
pathThe file path where the media content is stored and will be served from.
disabledSpecifies if entry is disabled

Configuration examples

To create/enable Creating a DLNA server

Code Block
languageros
/ip media add friendly-name=Mikrotik interface=bridge1 path=usb1

To create/enable Creating multiple DLNA servers with limitations. Usage example - Limit KIDs children's TV acces access only to child-friendly media/kids , located in folder "usb1/kids"

Code Block
languageros
/ip media add friendly-name=adults interface=bridge1 path=usb1/adults allowed-hostname=ADULTS_TV
/ip media add friendly-name=kids interface=bridge1 path=usb1/kids allowed-hostname=KIDS_TV

...