DNS -Problem with VMWare Fusion


/ Published in: Bash
Save to your folder(s)

Dig in my virtual maching results in a CNAME self-reference, whereas Dig in the host-system gives correct results.


Copy this code and paste it in your HTML
  1. Dig 1 (from virtual machine):
  2.  
  3. dig CNAME f.nntp.de @192.168.120.2
  4.  
  5. ; <<>> DiG 9.3.6-P1-RedHat-9.3.6-4.P1.el5_5.3 <<>> CNAME f.nntp.de @192.168.120.2
  6. ;; global options: printcmd
  7. ;; Got answer:
  8. ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 7445
  9. ;; flags: qr aa; QUERY: 1, ANSWER: 2, AUTHORITY: 0, ADDITIONAL: 0
  10.  
  11. ;; QUESTION SECTION:
  12. ;f.nntp.de. IN CNAME
  13.  
  14. ;; ANSWER SECTION:
  15. f.nntp.de. 5 IN CNAME f.nntp.de.
  16. f.nntp.de. 5 IN A 10.100.44.95
  17.  
  18. ;; Query time: 30 msec
  19. ;; SERVER: 192.168.120.2#53(192.168.120.2)
  20. ;; WHEN: Tue Feb 22 15:06:37 2011
  21. ;; MSG SIZE rcvd: 66
  22.  
  23. Dig 2 (From Host of virtual machine):
  24.  
  25.  
  26. dig CNAME f.nntp.de
  27.  
  28. ; <<>> DiG 9.4.3-P1 <<>> CNAME f.nntp.de
  29. ;; global options: printcmd
  30. ;; Got answer:
  31. ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 33359
  32. ;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
  33.  
  34. ;; QUESTION SECTION:
  35. ;f.nntp.de. IN CNAME
  36.  
  37. ;; AUTHORITY SECTION:
  38. nntp.de. 900 IN SOA ns1.akk.org. hostmaster.nntp.de. 2011022100 36000 1800 2592000 3600
  39.  
  40. ;; Query time: 31 msec
  41. ;; SERVER: 194.12.204.12#53(194.12.204.12)
  42. ;; WHEN: Tue Feb 22 15:27:15 2011
  43. ;; MSG SIZE rcvd: 85

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.