Guest User

Untitled

a guest
Aug 24th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 1.69 KB | None | 0 0
  1. ddns-update-style none;
  2.  
  3. # option definitions common to all supported networks...
  4. option domain-name "human-city.com";
  5. option domain-name-servers 192.168.253.1;
  6.  
  7. default-lease-time 600;
  8. max-lease-time 7200;
  9.  
  10. log-facility local7;
  11.  
  12. subnet 192.168.2.0 netmask 255.255.255.0 {
  13.         range 192.168.2.10 192.168.2.200;
  14.         default-lease-time 7200;
  15.         max-lease-time 14400;
  16.         option subnet-mask 255.255.255.0;
  17.         option broadcast-address 192.168.2.255;
  18.         option routers 192.168.2.254;
  19.         option domain-name-servers 192.168.253.1;
  20.         option domain-name "human-city.com";
  21. }
  22.  
  23. subnet 192.168.253.0 netmask 255.255.255.0 {
  24.         range 192.168.253.10 192.168.254.200;
  25.         default-lease-time 7200;
  26.         max-lease-time 14400;
  27.         option subnet-mask 255.255.255.0;
  28.         option broadcast-address 192.168.253.255;
  29.         option routers 192.168.253.254;
  30.         option domain-name-servers 192.168.253.1;
  31.         option domain-name "human-city.com";
  32. }
  33.  
  34. subnet 192.168.254.0 netmask 255.255.255.0 {
  35.         range 192.168.254.10 192.168.254.200;
  36.         default-lease-time 7200;
  37.         max-lease-time 14400;
  38.         option subnet-mask 255.255.255.0;
  39.         option broadcast-address 192.168.254.255;
  40.         option routers 192.168.254.254;
  41.         option domain-name-servers 192.168.253.1;
  42.         option domain-name "human-city.com";
  43. }
  44.  
  45. group {
  46.         user-host-decl-names on;
  47.  
  48.         host services {
  49.                 hardware ethernet 00:0c:29:38:ac:70;
  50.                 fixed-address 192.168.253.1;
  51.         }
  52.  
  53.         host dmz {
  54.                 hardware ethernet 00:0c:29:b8:a6:f2;
  55.                 fixed-address 192.168.254.1;
  56.         }
  57. }
Add Comment
Please, Sign In to add comment