Guest User

Untitled

a guest
Apr 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. # $OpenBSD: dhcpd.conf,v 1.1 2014/07/11 21:20:10 deraadt Exp $
  2. #
  3. # DHCP server options.
  4. # See dhcpd.conf(5) and dhcpd(8) for more information.
  5. #
  6.  
  7. # Network: 192.168.1.0/255.255.255.0
  8. # Domain name: my.domain
  9. # Name servers: 192.168.1.3 and 192.168.1.5
  10. # Default router: 192.168.1.1
  11. # Addresses: 192.168.1.32 - 192.168.1.127
  12. #
  13. option domain-name "dpsa.salud";
  14. option domain-name-servers 10.10.0.1;
  15.  
  16. subnet 10.10.0.0 netmask 255.255.255.0 {
  17. option routers 10.10.0.1;
  18.  
  19. range 10.10.0.100 10.10.0.200;
  20.  
  21. host static-client {
  22. hardware ethernet 22:33:44:55:66:77;
  23. fixed-address 10.10.0.200;
  24. }
  25. }
Add Comment
Please, Sign In to add comment