ssdpd.conf 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Sizes in kb, time in seconds
  4. -->
  5. <ssdpd>
  6. <log>
  7. <level>6</level> <!-- syslog Severity level: 0=emerg - 7=debug. -->
  8. </log>
  9. <skt>
  10. <rcvBuf>64</rcvBuf>
  11. <sndBuf>64</sndBuf>
  12. <hopLimitUnicast>1</hopLimitUnicast> <!-- For unicast. -->
  13. <hopLimitMulticast>1</hopLimitMulticast> <!-- For multicast. -->
  14. <hopLimit>1</hopLimit> <!-- For unicast and multicast if ni specific values set. -->
  15. </skt>
  16. <fEnableIPv4>yes</fEnableIPv4> <!-- Enable IPv4: 239.255.255.250:1900 -->
  17. <fEnableIPv6>yes</fEnableIPv6> <!-- Enable IPv6: [FF02::C]:1900, [FF05::C]:1900 -->
  18. <fEnableByebye>yes</fEnableByebye><!-- Enable send byebye on interface delete, daemon stop. -->
  19. <httpServer></httpServer> <!-- Default (if empty/not defined): 'OS/version UPnP/1.1 product/version' -->
  20. <announceList>
  21. <announce> <!-- Announce device. -->
  22. <xmlDevDescr>@WWWDIR@/upnp/descr/root.xml</xmlDevDescr>
  23. <maxAge>1800</maxAge> <!-- seconds, announces life time in clients cache. -->
  24. <interval>10</interval> <!-- seconds, send announces to network. -->
  25. <ifList> <!-- Network Ifaces list. -->
  26. <if>
  27. <ifName>lo0</ifName>
  28. <DevDescrURL4><![CDATA[http://127.0.0.1:80/upnp/descr/root.xml]]></DevDescrURL4>
  29. <DevDescrURL6><![CDATA[http://[::1]:80/upnp/descr/root.xml]]></DevDescrURL6>
  30. </if>
  31. <if>
  32. <ifName>lan0</ifName>
  33. <DevDescrURL4><![CDATA[http://0.0.0.0:80/upnp/descr/root.xml]]></DevDescrURL4> <!-- 0.0.0.0 will be replaced to IPv4 if addr. -->
  34. <DevDescrURL6><![CDATA[http://[::]:80/upnp/descr/root.xml]]></DevDescrURL6> <!-- [::] will be replaced to IPv6 if addr. -->
  35. </if>
  36. </ifList>
  37. </announce>
  38. <!-- Announce next device... -->
  39. </announceList>
  40. </ssdpd>