dhcpd.conf
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #
  2. # dhcpd.conf for testing of emulation environment
  3. #
  4. server-identifier coot.ee.lbl.gov;
  5. option domain-name "ee.lbl.gov";
  6. option domain-name-servers 10.0.1.1;
  7. #
  8. # for Kfall's Hitachi laptop
  9. #
  10. host bit {
  11. hardware ethernet 00:00:e1:08:8c:eb;
  12. fixed-address bit.ee.lbl.gov;
  13. }
  14. #
  15. # for thinkpad
  16. #
  17. host bit {
  18. hardware ethernet 00:a0:24:64:e2:2c;
  19. fixed-address bit.ee.lbl.gov;
  20. }
  21. shared-network EMULTEST-NET {
  22. option routers 10.0.1.1;
  23. option subnet-mask 255.255.255.255;
  24. # static routes are <dest> <router to dest>
  25. option static-routes 10.0.1.0 131.243.1.86, 131.243.1.0 10.0.1.1;
  26. subnet 10.0.1.0 netmask 255.255.255.0 {
  27. }
  28. subnet 131.243.1.86 netmask 255.255.255.255 {
  29. }
  30. }