Advertisement
Guest User

Untitled

a guest
Mar 6th, 2015
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.93 KB | None | 0 0
  1. # /etc/dhcp/dhcpd.conf
  2. # DHCPD Configuration File
  3. # Version: 2.0.0
  4.  
  5. ddns-update-style none;
  6. default-lease-time 86400;
  7. max-lease-time 864000;
  8. option domain-name "ns1.bludev.com.br";
  9. option domain-name-servers 8.8.8.8 , 8.8.4.4;
  10.  
  11. shared-network Redelocal {
  12.  
  13.         subnet 10.4.2.0 netmask 255.255.255.0 {
  14.                 authoritative;
  15.                 range 10.4.2.10    10.4.2.100;
  16.                 option subnet-mask 255.255.255.0;
  17.                 option broadcast-address 10.4.2.255;
  18.                 option routers 10.4.2.253;
  19.         }
  20.  
  21.         host Desktop {
  22.                 hardware ethernet bc:ee:7b:e1:5d:7e;
  23.                 fixed-address 10.4.2.1;
  24.         }
  25.         host NoteWlan{
  26.                 hardware ethernet 60:d8:19:85:39:ad;
  27.                 fixed-address 10.4.2.2;
  28.         }
  29.         host Celular {
  30.                 hardware ethernet e0:75:7d:04:08:ca;
  31.                 fixed-address 10.4.2.3;
  32.         }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement