Advertisement
Guest User

DHCPd - dhcpd.conf

a guest
Jan 4th, 2011
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. #####################################
  2. #
  3. # Conf DHCP LAB.CORP
  4. #
  5. #####################################
  6.  
  7. #### - Options Dynamique DNS initiales - ####
  8. ddns-domainname "lab.corp";
  9. ddns-rev-domainname "2.30.10.in-addr.arpa";
  10. ddns-update-style interim;
  11. ddns-updates on;
  12. ignore client-updates;
  13. update-static-leases on;
  14.  
  15. #### - Options DHCPD initiales - ####
  16. server-name "PRDDHCP01.lab.corp";
  17. option domain-name "lab.corp";
  18. option domain-name-servers 10.30.2.21;
  19. option routers 10.30.2.1;
  20. default-lease-time 60480;
  21. authoritative;
  22.  
  23. #### - Clé d'échange avec DNS - ####
  24.  
  25. include "/etc/dhcp3/MNGT_KEY.key";
  26.  
  27. #### - Réservations pour la PROD du réseau lab.corp - ####
  28.  
  29. host PRDLDAP01 {
  30. hardware ethernet 00:0c:29:97:54:59;
  31. fixed-address 10.30.2.10;
  32. }
  33.  
  34. host PRDDNS01 {
  35. hardware ethernet 00:0c:29:c0:c0:8b;
  36. fixed-address 10.30.2.21;
  37. option domain-name-servers 89.2.0.1,89.2.0.2;
  38. }
  39.  
  40. host PRDDHCP01 {
  41. hardware ethernet 00:0c:29:25:0a:53;
  42. fixed-address 10.30.2.31;
  43. }
  44.  
  45. host PRDSQL01 {
  46. hardware ethernet 00:0c:29:c1:af:45;
  47. fixed-address 10.30.2.41;
  48. }
  49.  
  50. host PRDVPN01 {
  51. hardware ethernet 00:0c:29:81:83:bf;
  52. fixed-address 10.30.2.51;
  53. }
  54.  
  55. host PRDMAIL01 {
  56. hardware ethernet 00:0c:29:ff:b5:ad;
  57. fixed-address 10.30.2.61;
  58. }
  59.  
  60. host PRDCONVERT01 {
  61. hardware ethernet 00:0c:29:f8:39:ee;
  62. fixed-address 10.30.2.71;
  63. }
  64.  
  65. #### - Parametres pour le reseau lab.corp - ####
  66.  
  67. subnet 10.30.2.0 netmask 255.255.255.0 {
  68. range 10.30.2.80 10.30.2.200;
  69. }
  70.  
  71. zone 2.30.10.in-addr.arpa. {
  72. key MNGT_KEY.key;
  73. }
  74.  
  75. zone lab.corp. {
  76. key MNGT_KEY.key;
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement