@DanSchaper no problem.
ā ~ dig cdn.optimizely.com
; <<>> DiG 9.8.3-P1 <<>> cdn.optimizely.com
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 56774
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;cdn.optimizely.com. IN A
;; ANSWER SECTION:
cdn.optimizely.com. 300 IN A 172.16.1.3
;; Query time: 5 msec
;; SERVER: 172.16.100.6#53(172.16.100.6)
;; WHEN: Fri Dec 30 18:21:08 2016
;; MSG SIZE rcvd: 52
ā ~ dig -6 cdn.optimizely.com
; <<>> DiG 9.8.3-P1 <<>> -6 cdn.optimizely.com
;; global options: +cmd
;; connection timed out; no servers could be reached
ā ~ curl -I cdn.optimizely.com
curl: (7) Failed to connect to cdn.optimizely.com port 80: Operation timed out
ā ~ curl -I https://cdn.optimizely.com
curl: (7) Failed to connect to cdn.optimizely.com port 443: Operation timed out
So an interesting bit of information... those ^ were done on a client device. On the Pi running Pi-hole itself, I get this:
pi@rpi3-01:~ $ dig cdn.optimizely.com
; <<>> DiG 9.9.5-9+deb8u8-Raspbian <<>> cdn.optimizely.com
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 51555
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1
;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 4096
;; QUESTION SECTION:
;cdn.optimizely.com. IN A
;; ANSWER SECTION:
cdn.optimizely.com. 300 IN A 172.16.1.3
;; Query time: 0 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Fri Dec 30 18:27:47 PST 2016
;; MSG SIZE rcvd: 63
pi@rpi3-01:~ $ dig -6 cdn.optimizely.com
; <<>> DiG 9.9.5-9+deb8u8-Raspbian <<>> -6 cdn.optimizely.com
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 9661
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1
;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 4096
;; QUESTION SECTION:
;cdn.optimizely.com. IN A
;; ANSWER SECTION:
cdn.optimizely.com. 300 IN A 172.16.1.3
;; Query time: 0 msec
;; SERVER: ::1#53(::1)
;; WHEN: Fri Dec 30 18:28:13 PST 2016
;; MSG SIZE rcvd: 63
pi@rpi3-01:~ $ curl -I cdn.optimizely.com
HTTP/1.1 200 OK
X-Pi-hole: A black hole for Internet advertisements.
Content-Type: text/html
Accept-Ranges: bytes
ETag: "421379974"
Last-Modified: Tue, 13 Sep 2016 21:57:21 GMT
Content-Length: 78
Date: Sat, 31 Dec 2016 02:28:36 GMT
Server: lighttpd/1.4.35
pi@rpi3-01:~ $ curl -I https://cdn.optimizely.com
curl: (7) Failed to connect to cdn.optimizely.com port 443: Connection refused
My router it set to give out the Pi's IP address as the sole DNS source, though the Pi is pointed at itself using the localhost address 127.0.0.1:
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; SERVER: ::1#53(::1)
Not sure if that matters. I don't remember what it was set to before the upgrade.