source: genesis/tools/wleiden.pl@ 4144

Last change on this file since 4144 was 4115, checked in by rick, 20 years ago

Development will never stop

  • Property svn:executable set to *
File size: 7.8 KB
Line 
1#!/usr/bin/perl -w
2#
3#
4# maart 2004 rick@wirelessleiden.nl
5#
6
7my $debug=0;
8my $author="feb 2003 jasper\@WirelessLeiden.NL \| maart 2005 rick\@WirelessLeiden.NL";
9my $wicontrol='/usr/sbin/wicontrol';
10my $IP_pmPath='/home/genesis/tools/IP.pm';
11my $dnsheader_confPath='/home/genesis/dns/dnsheader.conf';
12
13
14#variablen
15my $time=gmtime();
16my $source=`/bin/hostname`;
17chomp($source);
18
19
20#slurp IP berekeningen info
21do ("$IP_pmPath") || die ("Cann't open $IP_pmPath");
22#slurp dns info
23do ("$dnsheader_confPath") || die ("Cann't open $dnsheader_confPath");
24
25
26#zoek uit of het master_ip addr voorkomt in de configs
27#belangrijk van aliassen
28sub master_ipNotUsed {
29 if( $debug ) {
30 print "running master_ipNotUsed...\n";
31 }
32 foreach my $if (keys %config) {
33 if( $IP{$if} =~ /([0-9\.]+).*/ ) {
34 if( $1 eq $master_ip ) {
35 return(0);
36 };
37 };
38 };
39 return(1);
40};
41
42
43
44sub genHeader {
45 my $comment = $_[0];
46 my $output =
47 "$comment This file specific to wireless\n" .
48 "$comment leiden. Please make all changes in Genesis.\n" .
49 "$comment\n" .
50 "$comment Generated by $source\n" .
51 "$comment on $time\n" .
52 "$comment\n" .
53 "$comment $author\n" .
54 "$comment\n\n\n";
55 return ($output);
56};
57
58
59sub txtconfig {
60 my $output = "";
61 foreach $interface (keys %config) {
62 $output .= $config{$interface};
63 };
64 return($output);
65};
66
67
68sub dhcpd_conf {
69 my $output = genHeader("#");
70 $output .=
71 "option domain-name \"$domain\";\n" .
72 " \n" .
73 "default-lease-time 7200;\n" .
74 "max-lease-time 2592000;\n" .
75 "\n" .
76 "ddns-update-style none;\n" .
77 "\n" .
78 "# Hack for the WET11\n" .
79 "#\n" .
80 "always-broadcast on;\n" .
81 "\n" .
82 "option domain-name-servers ${master_ip};\n" .
83 "\n";
84
85 foreach my $interface (sort keys %config) {
86 if( $interface =~ /^[a-z]+[0-9]+$/i ) {
87 (my $ip, my $netmask) = split('/', $IP{$interface});
88 my $subnet = IP::toSubnet($netmask);
89 my $broadcast = IP::getBroadcastAddr($ip, $subnet);
90 my $network = IP::getNetworkAddr($ip, $subnet);
91
92 $output .=
93 "# $interface $DESC{$interface}\n";
94
95 if ( $DHCP{$interface} =~ /[0-9]+\-[0-9]+/i ) {
96 my $dhcp_part = $ip;
97 $dhcp_part =~ s/[0-9]+$//;
98 (my $dhcp_start, my $dhcp_stop) = $DHCP{$interface} =~ /([0-9]+)\-([0-9]+)/i;
99 $dhcp_start = $dhcp_part . $dhcp_start;
100 $dhcp_stop = $dhcp_part . $dhcp_stop;
101 $output .=
102 "subnet $network netmask $subnet {\n" .
103 " range $dhcp_start $dhcp_stop;\n" .
104 " option broadcast-address $broadcast;\n" .
105 " option subnet-mask $subnet;\n" .
106 " option routers $ip;\n" .
107 "}\n" .
108 "\n";
109 }
110 else {
111 $output .=
112 "subnet $network netmask $subnet {not authoritative; }\n" .
113 "\n";
114 };
115 };
116 };
117
118 return($output);
119};
120
121sub named_conf {
122 my $output = genHeader("#");
123 $output .=
124 "options {\n" .
125 " directory \"/var/db/namedb\"\;\n" .
126 " forwarders {\n";
127 foreach my $forward (@forwarder) {
128 $output .= "$forward;\n";
129 };
130 $output .=
131 " };\n" .
132 "};\n" .
133 "\n" .
134 "\n" .
135 "zone \"\.\" {\n" .
136 " type hint;\n" .
137 " file \"/etc/namedb/named.root\"\;\n" .
138 "}\;\n" .
139 "\n" .
140 "zone \"0\.0\.127\.IN-ADDR.ARPA\" {\n" .
141 " type master\;\n" .
142 " file \"/etc/namedb/localhost.rev\"\;\n" .
143 "}\;\n" .
144 "\n" .
145 "zone \"1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.INT\" {\n" .
146 " type master\;\n" .
147 " file \"/etc/namedb/localhost-v6.rev\"\;\n" .
148 "};\n" .
149 "\n";
150
151
152 foreach my $tmpZone (sort keys %zone) {
153 my $dnsZone = $zone{$tmpZone};
154 $output .=
155 "zone \"$tmpZone\" {\n" .
156 " type slave\;\n" .
157 " file \"slave-$tmpZone\"\;\n" .
158 " masters {\n";
159 foreach my $tmpIP (sort @$dnsZone) {
160 $output .= " $tmpIP\;\n";
161 };
162 $output .=
163 " };\n" .
164 "};\n" .
165 "\n";
166 };
167
168 return($output);
169};
170
171
172
173sub rc_node_local {
174 my $output = genHeader("#");
175 my $masterNotUsed = master_ipNotUsed();
176 $output.=
177 "hostname=\"$nodetype$nodename.$domain\"\n" .
178 "location=\"$location\"\n" .
179 "\n";
180
181 if( $tproxy ) {
182 if( $tproxy =~ m/\d+\.\d+\.\d+\.\d+\/\d+/ ) {
183 $output .=
184 "# Tproxy is ran on this system\n".
185 "tproxy_enable='YES'\n".
186 "tproxy_range='$tproxy'\n".
187 "\n";
188 }
189 elsif( $tproxy !~ m/no/i ) {
190 $output .= "# WARNING - specification propably wrong - check " .
191 "genesis. It should be a pure CIDR\n";
192 };
193 };
194
195 $output .= "ifconfig_lo0_alias0=\"inet 172.31.255.1/32\"\n";
196 if( $masterNotUsed ) {
197 $output .= "ifconfig_lo0_alias1=\"inet $master_ip/32\"\n\n";
198 }
199 else {
200 $output .= "#ifconfig_lo0_alias1=\"inet $master_ip/32\"\n\n";
201 };
202
203 foreach my $interface (sort keys %config) {
204 (my $if, my $number) = split(/:/, $interface);
205 if( defined $number ) {
206 $output .= "ifconfig_$if\_alias$number=\"inet $IP{$interface}\"\n";
207 }
208 else {
209 $output .= "ifconfig_$if=\"inet $IP{$interface}\"\n";
210 };
211 };
212 return($output);
213};
214
215sub rc_local {
216 my $output = genHeader("#");
217 foreach my $if (sort keys %config) {
218 if( ($if =~ /^wi[0-9]$/i) and ($TYPE{$if} =~ /wireless/i) ) {
219 $output .=
220 "$wicontrol -i $if -s $SDESC{$if} # Nickname\n" .
221 "#$wicontrol -i $if -t 7 # TXrate\n" .
222 "$wicontrol -i $if -P 0 # PowerSave\n" .
223 "$wicontrol -i $if -Z # Zero SNR cache\n";
224 if( $MODE{$if}=~/master/i ) {
225 $output .=
226 "$wicontrol -i $if -p 6 # hostap mode\n" .
227 "$wicontrol -i $if -c 1 # broadcasting essid on\n" .
228 "$wicontrol -i $if -n $ESSID{$if} # network name\n" .
229 "$wicontrol -i $if -q $ESSID{$if} # ESSID\n" .
230 "$wicontrol -i $if -f $CHANNEL{$if}# Channel\n";
231 }
232 else {
233 $output .=
234 "$wicontrol -i $if -p 1 # Client mode (managed)\n" .
235 "$wicontrol -i $if -n $ESSID{$if} # ESSID\n" .
236 "# No channel - client follows\n" .
237 "# $wicontrol -i $if -f 0 # Channel\n";
238 };
239 $output .= "\n";
240 };
241 };
242 return($output);
243};
244
245
246
247sub resolv_conf {
248 my $output = genHeader"#";
249
250 $output .=
251 "search wleiden.net.\n" .
252 "nameserver 127.0.0.1\n" .
253 "\n";
254
255 foreach my $if (sort keys %config) {
256 if( exists $POINT_TO_POINT{$if} ) {
257 foreach my $ip ($POINT_TO_POINT{$if}) {
258 $output .= "nameserver $ip # $DESC{$if}\n";
259 };
260 };
261 };
262 return($output);
263};
264
265
266
267sub snmpd_local_conf {
268 my $output = genHeader("#");
269 my $masterNotUsed = master_ipNotUsed();
270 $output .=
271 "# Location of the physical node.\n" .
272 "#\n" .
273 "syslocation \"$location\"\n" .
274 "#\n" .
275 "# Maintained by\n" .
276 "syscontact \"$contact\"\n" .
277 "\n";
278
279 if( $DISK =~ /flash/i ) {
280 $output .= "# Verify that disk is RO\n";
281 $output .= "sh diskro /usr/local/sbin/diskro.sh\n\n";
282 };
283
284 $output .= "agentaddress 161,tcp:161\n";
285
286 if( $masterNotUsed ) {
287 $output .= "agentaddress $master_ip\n";
288 };
289
290 foreach my $if (keys %config) {
291 if( $IP{$if} =~ /([0-9\.]+).*/ ) {
292 $output .= "agentaddress $1\n";
293 };
294 };
295 return($output);
296};
297
298
299
300sub parse_config {
301 my $workingfile = $_[0];
302 do($workingfile) || die("Cann't open/parse $workingfile");
303 foreach my $if (keys %config) {
304 my $cfg=$config{$if};
305 while ($cfg) {
306 $cfg=~s/^([^\n\r]+)[\r\n]*//m;
307 my $line=$1;
308 $line=~s/\s*#.*//;
309 if (((my $name, my $value)=split(/=/,$line)) eq 2) {
310 my $doit="if (exists(\$$name\{\"$if\"\})) {\$$name\{\"$if\"\}.=\";$value\";} else {\$$name\{\"$if\"\}.=\"$value\";}";
311 eval($doit);
312 };
313 $cfg=~s/[\r\n]*$//m;
314 };
315 };
316};
317
318sub do_it {
319 my $file = $_[0];
320 my $body = "";
321
322 $file =~ s/\./_/g;
323 $body=&$file;
324 return($body);
325};
326
327if( exists $ARGV[0] ) {
328 if( exists $ARGV[1] ) {
329 parse_config($ARGV[0]);
330 print do_it($ARGV[1]);
331 }
332 else {
333 print "Usage `perl wleiden.pl 'inputfile' 'outputfile'`\n";
334 };
335};
336
3371;
Note: See TracBrowser for help on using the repository browser.