Advertisement
sqpp15

Untitled

Nov 18th, 2014
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. // command: dig uhosts.info -->
  2.  
  3. ; <<>> DiG 9.8.4-rpz2+rl005.12-P1 <<>> uhosts.info
  4. ;; global options: +cmd
  5. ;; Got answer:
  6. ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 26402
  7. ;; flags: qr aa rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
  8.  
  9. ;; QUESTION SECTION:
  10. ;uhosts.info. IN A
  11.  
  12. ;; AUTHORITY SECTION:
  13. uhosts.info. 38400 IN SOA ns1.uhosts.info. admin.uhosts.in
  14. fo. 2006081403 28800 3600 604800 38400
  15.  
  16. ;; Query time: 21 msec
  17. ;; SERVER: 84.200.15.131#53(84.200.15.131)
  18. ;; WHEN: Tue Nov 18 18:33:07 2014
  19. ;; MSG SIZE rcvd: 75
  20.  
  21.  
  22. // Config file /etc/bind/zones/uhosts.info.db
  23.  
  24. uhosts.info. IN SOA ns1.uhosts.info. admin.uhosts.info. (
  25. 2006081410
  26. 28800
  27. 3600
  28. 604800
  29. 38400 )
  30.  
  31. uhosts.info. IN NS ns1.uhosts.info.
  32. uhosts.info. IN MX 10 mx.uhosts.info
  33.  
  34. www IN A 84.200.15.131
  35. mx IN A 84.200.15.131
  36. ns1 IN A 84.200.15.131
  37.  
  38.  
  39. // Config file /etc/bind/named.conf.local
  40.  
  41. GNU nano 2.2.6 File: /etc/bind/named.conf.local
  42.  
  43. //
  44. // Do any local configuration here
  45. //
  46.  
  47. // Consider adding the 1918 zones here, if they are not used in your
  48. // organization
  49. //include "/etc/bind/zones.rfc1918";
  50.  
  51. zone "uhosts.info" {
  52. type master;
  53. file "/etc/bind/zones/uhosts.info.db";
  54. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement