Advertisement
Guest User

sarthor

a guest
Jan 27th, 2014
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. Using Ubuntu 12.04, Text based, no GUI
  2. ===============================
  3. resolv.conf
  4. ===========
  5. cat /etc/resolv.conf
  6. # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
  7. # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
  8. nameserver 127.0.0.1
  9. ================================
  10. /etc/network/interface
  11. cat /etc/network/interfaces
  12. # This file describes the network interfaces available on your system
  13. # and how to activate them. For more information, see interfaces(5).
  14.  
  15. # The loopback network interface
  16. auto lo
  17. iface lo inet loopback
  18.  
  19. # The primary network interface
  20. auto eth0
  21. iface eth0 inet static
  22. address 192.168.1.107
  23. netmask 255.255.255.0
  24. broadcast 192.168.1.255
  25. network 192.168.1.0
  26. gateway 192.168.1.1
  27. dns-servers 192.168.1.101
  28. ======================================
  29. and can ping 192.168.1.101, working fine and is resolving on other machines. but there is no resolving,
  30. ping yahoo.com, ping google.com, dig cnn.com dig google.com is not working.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement