3 Comments

  1. The DNS may be probably also cached by your DNS provider. You can use the dig command to query the DNS info from your DNS server:

    dig @dns_server_address domain_name

    For example:

    [zma@localhost ~]$ dig @ns1.dreamhost.com fclose.com

    ; <> DiG 9.9.4-P2-RedHat-9.9.4-12.P2.fc20 <> @ns1.dreamhost.com fclose.com
    ; (1 server found)
    ;; global options: +cmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 52886
    ;; flags: qr aa rd; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1
    ;; WARNING: recursion requested but not available

    ;; OPT PSEUDOSECTION:
    ; EDNS: version: 0, flags:; udp: 2800
    ;; QUESTION SECTION:
    ;fclose.com. IN A

    ;; ANSWER SECTION:
    fclose.com. 14400 IN A 64.90.49.224

    ;; Query time: 921 msec
    ;; SERVER: 66.33.206.206#53(66.33.206.206)
    ;; WHEN: Mon Apr 21 14:01:50 HKT 2014
    ;; MSG SIZE rcvd: 55

    [zma@localhost ~]$ dig @8.8.8.8 fclose.com

    ; <> DiG 9.9.4-P2-RedHat-9.9.4-12.P2.fc20 <> @8.8.8.8 fclose.com
    ; (1 server found)
    ;; global options: +cmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 15587
    ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1

    ;; OPT PSEUDOSECTION:
    ; EDNS: version: 0, flags:; udp: 512
    ;; QUESTION SECTION:
    ;fclose.com. IN A

    ;; ANSWER SECTION:
    fclose.com. 14399 IN A 64.90.49.224

    ;; Query time: 1865 msec
    ;; SERVER: 8.8.8.8#53(8.8.8.8)
    ;; WHEN: Mon Apr 21 14:01:59 HKT 2014
    ;; MSG SIZE rcvd: 55

  2. You may also need to flush certain programs’ own DNS cache.

    For example, for Chrome, “browse” chrome://net-internals/#dns

    And click on the “Clear host cache” can clear Chrome’s DNS cache.

Leave a Reply

Your email address will not be published. Required fields are marked *