Advertisement
Guest User

Untitled

a guest
Sep 5th, 2015
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. #dhcpd.conf
  2. # required to get dhcpd started
  3. ddns-update-style none;
  4. ddns-updates off;
  5.  
  6. authoritative;
  7. #allow bootp;
  8.  
  9. local-address 83.221.117.229;
  10.  
  11. option domain-name-servers 83.221.117.229;
  12. option time-servers 83.221.117.229;
  13. option ntp-servers 83.221.117.229;
  14. option domain-name "pirelli.stb";
  15.  
  16. default-lease-time 3600; # 7200 = 2 hours
  17. max-lease-time 3600; # 14400 = 4 hours 86400 = 1 day
  18.  
  19. option vendor-encapsulated-options code 43 = string;
  20. option pirelli-download-method code 160 = string;
  21. option pirelli-tftp-server code 161 = string;
  22. option pirelli-tftp-image code 162 = string;
  23. option pirelli-multicast-address code 163 = string;
  24.  
  25. class "pirelli-stb" {
  26. match if (option vendor-class-identifier = "pirelli-stb");
  27. }
  28.  
  29. subnet 83.221.117.0 netmask 255.255.255.0 {
  30. option subnet-mask 255.255.255.0;
  31. option routers 83.221.117.229;
  32. option broadcast-address 83.221.117.255;
  33. pool {
  34. allow members of "pirelli-stb";
  35. range 83.221.117.230 83.221.117.234;
  36. }
  37. }
  38.  
  39. class "pirelli-stb-mboot" {
  40. match if ((option vendor-encapsulated-options = "mboot") and (option vendor-class-identifier = "pirelli-stb"));
  41. option pirelli-download-method 1;
  42. option pirelli-tftp-server 53:DD:75:E5 ; # 83.221.117.229
  43. option pirelli-tftp-image "recovery";
  44. }
  45.  
  46. class "pirelli-stb-upgrd" {
  47. match if ((option vendor-encapsulated-options = "upgrd") and (option vendor-class-identifier = "pirelli-stb"));
  48. option vendor-encapsulated-options 1:4:E1:0:0:5:2:2:4:57; # 225.0.0.5:1111
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement