1

I'm running xbmc / kodi 14.0 on my ubuntu 14.04 machine and I'm trying to view / watch my files located on my Kodi ubuntu machine from my nexus 7 tablet. I'm using bubbleupnp onmy tablet which can see my plex server but it can't see my kodi server are there ports I need to open up like I did for the plex server? If so what are they?

1

This is what I had to do.

1) Do a netstat to find the PID of kodi.bin on the Local Kodi server

sudo netstat -lp --inet

2) Then get the pid and do a grep on it, this will tell you the udp and tcp ports it uses.

sudo netstat -lp --inet | grep "$7609/"

Link to example of it

| improve this answer | |

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

Not the answer you're looking for? Browse other questions tagged or ask your own question.