Advertisement
josephxsxn

annoying dns config home lab

Sep 6th, 2017
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.89 KB | None | 0 0
  1. # /etc/nsswitch.conf
  2. #
  3. # Example configuration of GNU Name Service Switch functionality.
  4. # If you have the `glibc-doc-reference' and `info' packages installed, try:
  5. # `info libc "Name Service Switch"' for information about this file.
  6.  
  7. passwd:         compat
  8. group:          compat
  9. shadow:         compat
  10. gshadow:        files
  11.  
  12. hosts:          files mdns4 dns
  13. networks:       files
  14.  
  15. protocols:      db files
  16. services:       db files
  17. ethers:         db files
  18. rpc:            db files
  19.  
  20. netgroup:       nis
  21.  
  22.  
  23.  
  24. telore@massivedynamic:~$ cat /etc/resolv.conf
  25. # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
  26. #     DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
  27. # 127.0.0.53 is the systemd-resolved stub resolver.
  28. # run "systemd-resolve --status" to see details about the actual nameservers.
  29.  
  30. nameserver 192.168.10.151
  31. nameserver 127.0.0.53
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement