Advertisement
Guest User

Untitled

a guest
Jan 17th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. niklas@b3:/etc$ cat dhcp/dhclient.conf
  2. request subnet-mask, broadcast-address, time-offset, routers,
  3. domain-name, domain-name-servers, host-name,
  4. netbios-name-servers, netbios-scope;
  5.  
  6. prepend domain-name-servers 192.168.10.1;
  7.  
  8. timeout 10;
  9.  
  10. lease {
  11. interface "br0" ;
  12. fixed-address 192.168.10.1;
  13. option subnet-mask 255.255.255.0;
  14. option broadcast-address 192.168.10.255;
  15. option routers 192.168.10.1;
  16. renew 6 2029/1/10 13:58:18;
  17. rebind 3 2029/7/18 06:11:04;
  18. expire 2 2038/1/19 03:14:07;
  19. }
  20.  
  21. send host-name "b3";
  22. niklas@b3:/etc$ cat hosts
  23. 127.0.0.1 localhost.localdomain localhost
  24. ::1 ip6-localhost ip6-loopback
  25. fe00::0 ip6-localnet
  26. ff00::0 ip6-mcastprefix
  27. ff02::1 ip6-allnodes
  28. ff02::2 ip6-allrouters
  29. ff02::3 ip6-allhosts
  30. 192.168.10.1 b3.localdomain b3
  31. 192.168.10.11 popcorn.localdomain popcorn
  32. 192.168.10.4 nuc.localdomain nuc
  33. 95.211.104.242 stinkyfeet
  34. 192.168.30.1 bonus
  35. 192.168.10.3 ap.localdomain ap
  36. niklas@b3:/etc$ ls -l dnsmasq.d
  37. total 80
  38. -rw-r--r-- 1 root root 53 Oct 1 2014 ap.conf
  39. -rw-r--r-- 1 root root 56 Oct 1 2014 bonus.conf
  40. -rw-r--r-- 1 root root 229 May 5 2015 bubba.conf
  41. -rw-r--r-- 1 root root 57 Oct 1 2014 cent5.conf
  42. -rw-r--r-- 1 root root 50 Oct 1 2014 dell.conf
  43. -rw-r--r-- 1 root root 57 Oct 1 2014 desire.conf
  44. -rw-r--r-- 1 root root 64 May 5 2015 google-phone.conf
  45. -rw-r--r-- 1 root root 101 May 6 2015 ignore.conf
  46. -rw-r--r-- 1 root root 58 Oct 1 2014 irtrans.conf
  47. -rw-r--r-- 1 root root 58 Oct 1 2014 kindle.conf
  48. -rw-r--r-- 1 root root 50 May 10 2015 muttan.conf
  49. -rw-r--r-- 1 root root 67 Oct 9 2014 nuc.conf
  50. -rw-r--r-- 1 root root 59 May 5 2015 oneplus.conf
  51. -rw-r--r-- 1 root root 61 Oct 1 2014 paperwhite.conf
  52. -rw-r--r-- 1 root root 59 Oct 1 2014 popcorn.conf
  53. -rw-r--r-- 1 root root 211 Sep 19 2010 README
  54. -rw-r--r-- 1 root root 53 Oct 1 2014 s3.conf
  55. -rw-r--r-- 1 root root 46 Oct 1 2014 static.conf
  56. -rw-r--r-- 1 root root 63 May 5 2015 tivo-fucker.conf
  57. -rw-r--r-- 1 root root 58 Nov 19 2014 voyage.conf
  58. niklas@b3:/etc$ cat dnsmasq.d/oneplus.conf
  59. dhcp-host=C0:EE:FB:32:E5:AD,192.168.10.16,oneplus,infinite
  60. niklas@b3:/etc$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement