<html><body><div style="color:#000; background-color:#fff; font-family:lucida console, sans-serif;font-size:12pt"><pre>(Sorry about the formatting, I missed the original message and only saw the<br>topic while browsing the archive.)<br><br>UPnP needs port 1900 open for SSDP.  Also, on Fedora I had to put this code in the<br>start() clause in /etc/rc.d/inid.d/mythbackend:<br><br>  cnt=10<br>  while [[ $cnt -gt 0 ]]<br>  do<br>      (route add -net 239.0.0.0/8 eth0 2&gt;&amp;1) &amp;&amp; break<br>      let "cnt=cnt-1"<br>      sleep 2<br>  done<br><br>and this in the stop() clause:<br><br>  route del -net 239.0.0.0/8 eth0<br><br>IIRC just doing a single "route add" (on Fedora 6 or thereabouts) would usually fail,<br>so I put in the loop to make sure it got added.<br><br>Using this stuff plus port 1900, I've gotten my PS3 to access my MythTV video and<br>music files.  Good luck with Android!<br><br>-----<br><b>Richard Shaw wrote:<br><br></b>In my
 continuing endeavor to get streaming working on my Android phone<br>I was looking at trying to use the UPnP features of Myth.<br><br>I've downloaded an app but it doesn't detect any UPnP servers. I'm<br>have my firewall enabled (Fedora 14 x86_64 if it matters) so I tried<br>searching for any ports that need to be opened up but I couldn't find<br>anything authorative.<br><br>Neither:<br><a href="http://www.mythtv.org/wiki/UPnP">http://www.mythtv.org/wiki/UPnP</a><br>or<br><a href="http://www.mythtv.org/wiki/UPnP_Client_Info">http://www.mythtv.org/wiki/UPnP_Client_Info</a><br><br>had any information about ports that need to be open...<br><br>Thanks,<br>Richard<br></pre></div></body></html>