Skip to content

Instantly share code, notes, and snippets.

@wenzowski
Created April 26, 2013 07:14
Show Gist options
  • Save wenzowski/5465495 to your computer and use it in GitHub Desktop.
Save wenzowski/5465495 to your computer and use it in GitHub Desktop.
Alcatel Lucent "Cellpipe" 7130 breaks cURL
$ dig @206.248.154.22 A ent.io [ruby-1.9.3-p392]
; <<>> DiG 9.8.3-P1 <<>> @206.248.154.22 A ent.io
; (1 server found)
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 20694
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 4, ADDITIONAL: 0
;; QUESTION SECTION:
;ent.io. IN A
;; ANSWER SECTION:
ent.io. 86379 IN A 174.129.25.170
;; AUTHORITY SECTION:
ent.io. 172779 IN NS ns-1511.awsdns-60.org.
ent.io. 172779 IN NS ns-1634.awsdns-12.co.uk.
ent.io. 172779 IN NS ns-302.awsdns-37.com.
ent.io. 172779 IN NS ns-655.awsdns-17.net.
;; Query time: 54 msec
;; SERVER: 206.248.154.22#53(206.248.154.22)
;; WHEN: Fri Apr 26 02:45:08 2013
;; MSG SIZE rcvd: 180
dig @206.248.154.170 A ent.io [ruby-1.9.3-p392]
; <<>> DiG 9.8.3-P1 <<>> @206.248.154.170 A ent.io
; (1 server found)
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 9750
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 4, ADDITIONAL: 0
;; QUESTION SECTION:
;ent.io. IN A
;; ANSWER SECTION:
ent.io. 86400 IN A 174.129.25.170
;; AUTHORITY SECTION:
ent.io. 172800 IN NS ns-1511.awsdns-60.org.
ent.io. 172800 IN NS ns-1634.awsdns-12.co.uk.
ent.io. 172800 IN NS ns-302.awsdns-37.com.
ent.io. 172800 IN NS ns-655.awsdns-17.net.
;; Query time: 54 msec
;; SERVER: 206.248.154.170#53(206.248.154.170)
;; WHEN: Fri Apr 26 02:46:21 2013
;; MSG SIZE rcvd: 180
$ dig @192.168.2.1 A ent.io [ruby-1.9.3-p392]
; <<>> DiG 9.8.3-P1 <<>> @192.168.2.1 A ent.io
; (1 server found)
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 17858
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 4, ADDITIONAL: 0
;; QUESTION SECTION:
;ent.io. IN A
;; ANSWER SECTION:
ent.io. 86315 IN A 174.129.25.170
;; AUTHORITY SECTION:
ent.io. 172715 IN NS ns-1511.awsdns-60.org.
ent.io. 172715 IN NS ns-1634.awsdns-12.co.uk.
ent.io. 172715 IN NS ns-302.awsdns-37.com.
ent.io. 172715 IN NS ns-655.awsdns-17.net.
;; Query time: 55 msec
;; SERVER: 192.168.2.1#53(192.168.2.1)
;; WHEN: Fri Apr 26 02:47:45 2013
;; MSG SIZE rcvd: 180
$ time dig @206.248.154.22 AAAA ent.io [ruby-1.9.3-p392]
; <<>> DiG 9.8.3-P1 <<>> @206.248.154.22 AAAA ent.io
; (1 server found)
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 34376
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
;; QUESTION SECTION:
;ent.io. IN AAAA
;; AUTHORITY SECTION:
ent.io. 900 IN SOA ns-302.awsdns-37.com. awsdns-hostmaster.amazon.com. 1 7200 900 1209600 86400
;; Query time: 68 msec
;; SERVER: 206.248.154.22#53(206.248.154.22)
;; WHEN: Fri Apr 26 02:50:16 2013
;; MSG SIZE rcvd: 105
dig @206.248.154.22 AAAA ent.io 0.01s user 0.00s system 12% cpu 0.080 total
$ time dig @206.248.154.170 AAAA ent.io [ruby-1.9.3-p392]
; <<>> DiG 9.8.3-P1 <<>> @206.248.154.170 AAAA ent.io
; (1 server found)
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 19107
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
;; QUESTION SECTION:
;ent.io. IN AAAA
;; AUTHORITY SECTION:
ent.io. 786 IN SOA ns-302.awsdns-37.com. awsdns-hostmaster.amazon.com. 1 7200 900 1209600 86400
;; Query time: 56 msec
;; SERVER: 206.248.154.170#53(206.248.154.170)
;; WHEN: Fri Apr 26 02:50:48 2013
;; MSG SIZE rcvd: 105
dig @206.248.154.170 AAAA ent.io 0.01s user 0.00s system 15% cpu 0.068 total
$ time dig @192.168.2.1 AAAA ent.io
; <<>> DiG 9.8.3-P1 <<>> @192.168.2.1 AAAA ent.io
; (1 server found)
;; global options: +cmd
;; connection timed out; no servers could be reached
dig @192.168.2.1 AAAA ent.io 0.01s user 0.00s system 0% cpu 15.013 total
$ num=0; while [ $num -le 10 ]; do time dig @192.168.2.1 AAAA ent.io; num=$(expr $num + 1); done
; <<>> DiG 9.8.3-P1 <<>> @192.168.2.1 AAAA ent.io
; (1 server found)
;; global options: +cmd
;; connection timed out; no servers could be reached
dig @192.168.2.1 AAAA ent.io 0.01s user 0.00s system 0% cpu 15.011 total
; <<>> DiG 9.8.3-P1 <<>> @192.168.2.1 AAAA ent.io
; (1 server found)
;; global options: +cmd
;; connection timed out; no servers could be reached
dig @192.168.2.1 AAAA ent.io 0.01s user 0.00s system 0% cpu 15.014 total
; <<>> DiG 9.8.3-P1 <<>> @192.168.2.1 AAAA ent.io
; (1 server found)
;; global options: +cmd
;; connection timed out; no servers could be reached
dig @192.168.2.1 AAAA ent.io 0.01s user 0.00s system 0% cpu 15.012 total
; <<>> DiG 9.8.3-P1 <<>> @192.168.2.1 AAAA ent.io
; (1 server found)
;; global options: +cmd
;; connection timed out; no servers could be reached
dig @192.168.2.1 AAAA ent.io 0.01s user 0.00s system 0% cpu 15.013 total
; <<>> DiG 9.8.3-P1 <<>> @192.168.2.1 AAAA ent.io
; (1 server found)
;; global options: +cmd
;; connection timed out; no servers could be reached
dig @192.168.2.1 AAAA ent.io 0.01s user 0.00s system 0% cpu 15.013 total
; <<>> DiG 9.8.3-P1 <<>> @192.168.2.1 AAAA ent.io
; (1 server found)
;; global options: +cmd
;; connection timed out; no servers could be reached
dig @192.168.2.1 AAAA ent.io 0.01s user 0.00s system 0% cpu 15.013 total
; <<>> DiG 9.8.3-P1 <<>> @192.168.2.1 AAAA ent.io
; (1 server found)
;; global options: +cmd
;; connection timed out; no servers could be reached
dig @192.168.2.1 AAAA ent.io 0.01s user 0.00s system 0% cpu 15.012 total
; <<>> DiG 9.8.3-P1 <<>> @192.168.2.1 AAAA ent.io
; (1 server found)
;; global options: +cmd
;; connection timed out; no servers could be reached
dig @192.168.2.1 AAAA ent.io 0.01s user 0.00s system 0% cpu 15.012 total
; <<>> DiG 9.8.3-P1 <<>> @192.168.2.1 AAAA ent.io
; (1 server found)
;; global options: +cmd
;; connection timed out; no servers could be reached
dig @192.168.2.1 AAAA ent.io 0.01s user 0.00s system 0% cpu 15.012 total
; <<>> DiG 9.8.3-P1 <<>> @192.168.2.1 AAAA ent.io
; (1 server found)
;; global options: +cmd
;; connection timed out; no servers could be reached
dig @192.168.2.1 AAAA ent.io 0.01s user 0.00s system 0% cpu 15.012 total
; <<>> DiG 9.8.3-P1 <<>> @192.168.2.1 AAAA ent.io
; (1 server found)
;; global options: +cmd
;; connection timed out; no servers could be reached
dig @192.168.2.1 AAAA ent.io 0.01s user 0.00s system 0% cpu 15.013 total
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment