Hello everyone,
Ive set this up, disabled firewalls on all devices and routers and am having two issues;
1-no WAN connection from my apple TV at all
2-plexconnect does not see the server running local to it at all
The only bit of code ive changed in settings is the DNS IP to that of my mac mini (192.168.0.18) which i have also updated in the Apple TV.
Heres what i see in terminal.
MMS:~ MMMC$ sudo /Users/MMMC/Documents/PlexConnect-new-movie-sections/PlexConnect.py
PlexConnect : ***PlexConnect : PlexConnectPlexConnect : Press ENTER to shut down.PlexConnect : ***PlexConnect : IP_self: 192.168.0.18PlexGDM : ***PlexGDM : looking up Plex Media ServerPlexGDM : ***PlexGDM : No servers discoveredDNSServer : ***DNSServer : Starting up.DNSServer : intercept trailers.apple.com: 192.168.0.18DNSServer : forward other to higher level DNS: 192.168.0.18DNSServer : ***WebServer : ***WebServer : WebServer: Serving HTTP on 0.0.0.0 port 80.WebServer : ***DNSServer : DNS request received!DNSServer : Source: ('192.168.0.13', 55833)DNSServer : Domain: 28-courier.push.apple.comDNSServer : ***forward requestDNSServer : DNS request received!DNSServer : Source: ('192.168.0.18', 49152)DNSServer : Domain: 28-courier.push.apple.comDNSServer : ***forward requestDNSServer : DNS request received!DNSServer : Source: ('192.168.0.13', 55833)DNSServer : Domain: 28-courier.push.apple.comDNSServer : ***forward requestDNSServer : DNS request received!DNSServer : Source: ('192.168.0.13', 55833)DNSServer : Domain: 28-courier.push.apple.comDNSServer : ***forward requestDNSServer : DNS request received!DNSServer : Source: ('192.168.0.18', 49152)DNSServer : Domain: 28-courier.push.apple.comDNSServer : ***forward requestDNSServer
heres how my settings look now (i updated local IP to see if that changed anything), it didnt.
#!/usr/bin/python
"""Global Settings..."""## Plex Media Serverdef getPlexGDM():return True # True: use PlexGDM (GoodDayMate) to auto discover PMSdef getIP_PMS(): # default IP, if GDM fails... todo: do we need this fall back?return '192.168.0.18'def getPort_PMS():return 32400## DNS/WebServerdef getIP_DNSmaster(): # Router, ISP's DNS, ...return '192.168.0.18' # google public DNSdef getHostToIntercept():return 'trailers.apple.com'
can anyone suggest what i need to change?
as always all help is appreciated, thanks guys!