1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
|
#!/usr/bin/perl
# Generate ISC DHCP Configuration File
#
# generates an include file "dhcp.master.inc" included in dhcpd.conf
# with:
# - Definitions of User-defined DHCP Options
# - DHCP Service Global Options
# - DHCP Subnet Deklarations and Options
# - DHCP Host Deklarations and Options
use strict;
use warnings;
#use diagnostics;
use Net::LDAP;
use Net::LDAP::LDIF;
our ( $ldaphost, $basedn, $userdn, $passwd, $dhcpdn, $dhcpdconfpath, $dhcpdconffile );
my ( $ldap, $mesg );
# Read Configuration Variables for LDAP/
require "dhcpgen.conf.pl";
#use dhcpgenconfig;
# Bind with LDAP Server
$ldap = Net::LDAP->new( $ldaphost ) or die "$@";
$mesg = $ldap->bind( $userdn, password => $passwd );
$mesg->code && die $mesg->error;
mkdir "$dhcpdconfpath/includes";
open DATEI, "> $dhcpdconfpath/includes/dhcp.master.inc";
my @dhcpdnarray = split /,/,$dhcpdn;
my $aurdn = $dhcpdnarray[2];
my @auarray = split /=/,$aurdn;
my $au = $auarray[1];
my $srvrdn = $dhcpdnarray[0];
my @srvarray = split /=/,$srvrdn;
my $srv = $srvarray[1];
# File Header (general Informations)
printf DATEI "##################### DHCP SERVICE CONFIG ############################################ \n#\n";
printf DATEI "# DHCP Service: \t\t %s \n", $srv;
printf DATEI "# Administrative Unit: \t\t %s \n#\n", $au;
printf DATEI "# [ %s ]\n#\n", $dhcpdn;
printf DATEI "######################################################################################## \n\n\n";
# Ldapsearch on DHCP Service Object
$mesg = $ldap->search(base => $dhcpdn,
scope => 'base',
filter => '(objectclass=dhcpService)');
#Net::LDAP::LDIF->new( \*STDOUT,"w" )->write( $mesg->entries );
$mesg->code && die $mesg->error;
my $dhcpservice = $mesg->count or die "DHCP Service Object does not exist in the System";
my $dhcpsrventry = $mesg->entry(0);
printf DATEI "######################\n# Option Definitions\n######################\n\n";
# write Definitions of user/self-defined DHCP Options
if ($dhcpsrventry->exists( 'OptionDefinition' )) {
my @optdefinitions = $dhcpsrventry->get_value( 'OptionDefinition' );
foreach my $optdef ( @optdefinitions) {
printf DATEI "%s\n", $optdef;
}
}
printf DATEI "\n\n######################\n# Global Options\n######################\n\n";
# write DHCP Options in global Scope
dhcpoptions( $dhcpsrventry );
printf DATEI "\n";
####################################
# DHCP SUBNETS
# ldapsearch on Subnet Objects referencing to DHCP Service Object
$mesg = $ldap->search(base=>$basedn,
scope => 'sub',
filter => '(&(objectclass=dhcpSubnet)(dhcphlpcont:dn:='.$dhcpdn.'))');
#Net::LDAP::LDIF->new( \*STDOUT,"w" )->write( $mesg->entries );
$mesg->code && die $mesg->error;
my @subnets = $mesg->sorted('cn');
# write Subnet Declarations
printf DATEI "\n\n######################\n# DHCP Subnets\n######################\n\n";
foreach my $subnetentry ( @subnets ) {
my $subnetdn = $subnetentry->dn;
my $subnet = $subnetentry->get_value( 'cn' );
my $netmask = $subnetentry->get_value( 'dhcpoptnetmask' );
printf DATEI "subnet %s netmask %s {\n", $subnet, $netmask;
# write DHCP Options in Subnet Scope
dhcpoptions($subnetentry);
# Range
if ($subnetentry->exists( 'dhcpRange' )) {
my @range = split /_/,$subnetentry->get_value( 'dhcpRange' );
printf DATEI " range %s %s;\n", $range[0], $range[1];
}
printf DATEI "}\n\n";
}
####################################
# DHCP HOSTS
# ldapsearch on DHCP Host Objects referencing to DHCP Service Object
$mesg = $ldap->search(base=>$basedn,
scope => 'sub',
filter => '(&(objectclass=dhcpHost)(dhcphlpcont:dn:='.$dhcpdn.'))');
#Net::LDAP::LDIF->new( \*STDOUT,"w" )->write( $mesg->entries );
$mesg->code && die $mesg->error;
my @hosts = $mesg->sorted('dn');
# write Host Declarations
printf DATEI "\n\n######################\n# DHCP Hosts\n######################\n";
# grouping Hosts by Administrative Units (AU)
my $hostau = "";
foreach my $hostentry ( @hosts ) {
# für jede AU eigener Abschnitt (oder abzweigung in eigene includedatei ...)
my $hostdn = $hostentry->dn();
my @dnarray = split /,/,$hostdn;
my @auarray = split /=/,$dnarray[2];
my $hostauactual = $auarray[1];
if ( $hostau ne $hostauactual) {
# hier neues handle und pfad falls eigene includedatei ...
printf DATEI "\n################################################\n# AU: %s \n", $hostauactual;
$hostau = $hostauactual;
}
# DHCP Options in Host Scope
dhcphost($hostentry);
}
close DATEI;
# LDAP unbind
$mesg = $ldap->unbind;
exit (0);
###################################################################################################
# Subroutines
###############
# write DHCP Options, Parameter: DHCP Object LDAP Entry
sub dhcpoptions {
my $entry = shift;
my @atts = $entry->attributes;
# DHCP Optionen mit 'option' vorne dran
my @options1 = grep /dhcpopt/, @atts;
#printf "options: @options1\n";
foreach my $option ( @options1 ){
if ( $option ne "dhcpoptNetmask" ){
my $value = $entry->get_value( $option );
$option =~ s/dhcpopt//;
if ( $option eq "Domain-name"){
printf DATEI " option %s \"%s\";\n", lc($option), $value;
}else{
printf DATEI " option %s %s;\n", lc($option), $value;
}
}
}
# DHCP Optionen
my @options2 = grep /dhcpOpt/, @atts;
#printf "Options: @options2\n";
foreach my $option ( @options2 ){
if ( $option ne "dhcpOptFixed-address" ){
my $value = $entry->get_value( $option );
$option =~ s/dhcpOpt//;
if ( $option eq "Filename"){
printf DATEI " %s \"%s\";\n", lc($option), $value;
}else{
printf DATEI " %s %s;\n", lc($option), $value;
}
}
}
}
# write DHCP Host specific Options, Parameter: DHCP Object LDAP Entry
sub dhcphost {
my $entry = shift;
my @atts = $entry->attributes;
printf DATEI "\nhost %s {\n", lc $entry->get_value( 'hostname' );
# Host specific DHCP Options
if ($entry->exists( 'hwaddress' )) {
printf DATEI " hardware ethernet %s;\n", $entry->get_value( 'hwaddress' );
}
if ($entry->exists( 'dhcpoptfixed-address' )) {
if ( $entry->get_value('dhcpoptfixed-address') eq "ip" ){
my @ip = split /_/, $entry->get_value( 'ipaddress' );
printf DATEI " fixed-address %s;\n", lc $ip[0];
}
if ( $entry->get_value('dhcpoptfixed-address') eq "hostname" ){
printf DATEI " fixed-address %s.%s;\n", lc $entry->get_value( 'hostname' ), lc $entry->get_value( 'domainname' );
}
}
my @hwoptions = grep /Hw-/, @atts;
foreach my $hwoption ( @hwoptions ){
printf DATEI " option %s \"%s\";\n", lc($hwoption), $entry->get_value($hwoption);
}
# remaining DHCP Options
dhcpoptions ($entry);
printf DATEI "}\n";
}
|