Hi Community,
I'm struggling my ass of with DNS rebinding for PLEX.
To allow secure connections if you are using 'dnsmasq' with DNS Rebinding Protection enabled, you will need to add the following to your advanced settings box:
rebind-domain-ok=/plex.direct/
Similarly, if you happen to be using pfSense or a similar router OS, you may instead be using 'DNS Resolver (Unbound)'. If this is the case a similar advanced setting will need to be added:
server:
private-domain: "plex.direct"
This page describes the requirement: https://support.plex.tv/hc/en-us/articl ... onnections
I SSH into router on root
Tried inseting this code:
/etc/init.d/dnsmasq rebind-domain-ok=/plex.direct/
but it's just not working.
any ideas?
PLEX DNS Rebinding
Moderator: Moderators
PLEX DNS Rebinding
2015 Tp-Link Archer C7 V2 - Old Chipset
2016 Tp-Link Archer C7 V2 - NewChipset
2016 Tp-Link Archer C7 V2 - NewChipset
Re: PLEX DNS Rebinding
That's not the correct syntax.
You'll want something like
uci set dnsmasq.SECTION.rebind-domain-ok=plex.direct
uci commit dnsmasq
I don't know what the appropriate section is but I'm sure the wiki can tell you.
You'll want something like
uci set dnsmasq.SECTION.rebind-domain-ok=plex.direct
uci commit dnsmasq
I don't know what the appropriate section is but I'm sure the wiki can tell you.
https://lantisproject.com/downloads/gargoylebuilds for the latest releases
Please be respectful when posting. I do this in my free time on a volunteer basis.
Please be respectful when posting. I do this in my free time on a volunteer basis.
Re: PLEX DNS Rebinding
Thanks!
I'll continue to dig and post back here once I have solved it for other who might need this fix as well.
I'll continue to dig and post back here once I have solved it for other who might need this fix as well.
2015 Tp-Link Archer C7 V2 - Old Chipset
2016 Tp-Link Archer C7 V2 - NewChipset
2016 Tp-Link Archer C7 V2 - NewChipset
Re: PLEX DNS Rebinding
ok, for those also struggling.
i'm not great on code so i used winscp to scp into router.
Edit
/etc/dnsmasq.config
Added line:
rebind-domain-ok=plex.direct
then edit
/var/etc/dnsmasq.config
Added line:
rebind-domain-ok=plex.direct
rebooted router, and got secure connection with all working right away
guess it was more pure luck than anything else
i'm not great on code so i used winscp to scp into router.
Edit
/etc/dnsmasq.config
Added line:
rebind-domain-ok=plex.direct
then edit
/var/etc/dnsmasq.config
Added line:
rebind-domain-ok=plex.direct
rebooted router, and got secure connection with all working right away
guess it was more pure luck than anything else
2015 Tp-Link Archer C7 V2 - Old Chipset
2016 Tp-Link Archer C7 V2 - NewChipset
2016 Tp-Link Archer C7 V2 - NewChipset
Re: PLEX DNS Rebinding
The below worked for me:
Code: Select all
uci add_list dhcp.dnsmasq[0].rebind_domain=plex.direct
Code: Select all
uci commit dhcp
Re: PLEX DNS Rebinding
Thanks for this, I am running into this exact same issue and will try one of the fixes above.