Tunlr-Clone
Tunlr-Clone copied to clipboard
Netflix loads my router's setup page
All other websites load okay, except ones defined in zones.override. They load my router's setup page (i.e. 192.168.0.1).
What are your DNS settings for your ISP connection?
Actually I'm using google's 8.8.8.8, and 8.8.4.4 as the forwarder.
Are you also using dnsmasq on your router, by any chance?
Not available I'm afraid. So all traffic goes to my DNS server.
Not available I'm afraid. So all traffic goes to my DNS server.
No problem. Do you have any diagnostic tools like dig
at your disposal? Let's assume your DNS server's IP is 199.195.x.x
. If you issue the following command, you should get similar response:
$ dig www.netflix.com @199.195.x.x
; <<>> DiG 9.8.3-P1 <<>> www.netflix.com @199.195.x.x
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 35279
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 1
;; QUESTION SECTION:
;www.netflix.com. IN A
;; ANSWER SECTION:
www.netflix.com. 86400 IN A 199.195.x.x
;; AUTHORITY SECTION:
netflix.com. 86400 IN NS ns1.netflix.com.
;; ADDITIONAL SECTION:
ns1.netflix.com. 86400 IN A 199.195.x.x
;; Query time: 13 msec
;; SERVER: 199.195.x.x#53(199.195.x.x)
;; WHEN: Tue Feb 25 14:54:57 2014
;; MSG SIZE rcvd: 83
Yup:
dig www.netflix.com @ xx.xx.xx.xx
; <<>> DiG 9.8.3-P1 <<>> www.netflix.com @xx.xx.xx.xx ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 21284 ;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 1
;; QUESTION SECTION: ;www.netflix.com. IN A
;; ANSWER SECTION: www.netflix.com. 86400 IN A xx.xx.xx.xx
;; AUTHORITY SECTION: netflix.com. 86400 IN NS ns1.netflix.com.
;; ADDITIONAL SECTION: ns1.netflix.com. 86400 IN A xx.xx.xx.xx
;; Query time: 183 msec ;; SERVER: xx.xx.xx.xx#53(xx.xx.xx.xx) ;; WHEN: Tue Feb 25 16:32:10 2014 ;; MSG SIZE rcvd: 83
Yup
So, I am assuming you ran this from a computer at your home network. It seems like something is responding with 192.168.0.1
as the DNS address for the overridden domains.
Indeed