/[pxelator]/lib/PXElator/httpd.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /lib/PXElator/httpd.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 306 by dpavlin, Thu Aug 27 14:31:15 2009 UTC revision 314 by dpavlin, Thu Aug 27 19:03:56 2009 UTC
# Line 26  sub menu {qq{ Line 26  sub menu {qq{
26  <a href=/server>server</a>  <a href=/server>server</a>
27  <a href=/brctl>brctl</a>  <a href=/brctl>brctl</a>
28  <a href=/ip>ip</a>  <a href=/ip>ip</a>
29    <a href=/nmap>nmap</a>
30  <a href=/client>client</a>  <a href=/client>client</a>
31  </div>  </div>
32    
# Line 54  use network; Line 55  use network;
55  use ip;  use ip;
56  use wireshark;  use wireshark;
57  use syslogd;  use syslogd;
58    use nmap;
59    
60  use CouchDB;  use CouchDB;
61    
# Line 232  warn "XXX pids = ", dump( $daemons::pids Line 234  warn "XXX pids = ", dump( $daemons::pids
234                                          'mac' => format::mac( $mac => 'html' ),                                          'mac' => format::mac( $mac => 'html' ),
235                                          'deploy' => html::select( 'deploy', $deploy, config::available )                                          'deploy' => html::select( 'deploy', $deploy, config::available )
236                                  );                                  );
237                                  $deploy = qq|<h2>PXElinux</h2>| . html::pre( config::for_ip( $ip ) );                                  if ( my $pxelinux = config::for_ip( $ip ) ) {
238                                            $deploy = qq|<h2>PXElinux</h2>| . html::pre( $pxelinux );
239                                    }
240                          }                          }
241    
242                          print $client ok                          print $client ok
# Line 251  warn "XXX pids = ", dump( $daemons::pids Line 255  warn "XXX pids = ", dump( $daemons::pids
255                                  map {                                  map {
256                                          my @c = split(/\s+/,$_);                                          my @c = split(/\s+/,$_);
257                                          if ( $#c == 5 ) {                                          if ( $#c == 5 ) {
258                                                    client::save_ip_mac( $c[0], $c[3] );
259                                                  ( uc $c[3] => [ $c[0] , $c[5] ] )                                                  ( uc $c[3] => [ $c[0] , $c[5] ] )
260                                          } else {                                          } else {
261                                          }                                          }
# Line 261  warn "XXX pids = ", dump( $daemons::pids Line 266  warn "XXX pids = ", dump( $daemons::pids
266    
267                          print $client ok                          print $client ok
268                                  , qq|<h2>Clients on $server::ip</h2>|                                  , qq|<h2>Clients on $server::ip</h2>|
269                                  , html::table( -5,                                  , html::table( -6,
270                                          'ip', 'mac', 'hostname', 'conf', 'arp',                                          'ip', 'mac', 'arp', 'hostname', 'deploy', 'conf',
271                                          map {                                          map {
272                                                  my $ip = $_;                                                  my $ip = $_;
273                                                  my $mac = client::mac_from_ip $ip;                                                  my $conf = client::all_conf( $ip );
274                                                  my $arp = $arp->{ $mac };                                                  my $mac = delete $conf->{mac} || '';
                                                 $arp = $arp ? $arp->[1] : '';  
                                                 $arp =~ s{$ip}{};  
275                                                  (                                                  (
276                                                          qq|<a href=/client/$ip>$ip</a>|                                                          qq|<a name=$ip href=/client/$ip>$ip</a>|
277                                                          , format::mac( $mac => 'html' )                                                          , format::mac( $mac => 'html' )
278                                                          , client::conf( $ip, 'hostname' )                                                          , ( $arp->{$mac} ? $arp->{$mac}->[1] : '' )
279                                                          , html::pre_dump( client::all_conf( $ip ) )                                                          , delete $conf->{hostname}
280                                                          , $arp                                                          , delete $conf->{deploy}
281                                                            , ( %$conf ? html::pre_dump( $conf ) : qq|<a href=/nmap?scan=$ip>nmap</a>| )
282                                                  );                                                  );
283                                          }                                          }
284                                          sort { ip::to_int($a) cmp ip::to_int($b) }                                          sort { ip::to_int($a) cmp ip::to_int($b) }
# Line 284  warn "XXX pids = ", dump( $daemons::pids Line 288  warn "XXX pids = ", dump( $daemons::pids
288                                                  $ip;                                                  $ip;
289                                          } glob("$server::conf/ip/*")                                          } glob("$server::conf/ip/*")
290                                  )                                  )
                                 , qq|<h2>ARP</h2>|  
                                 , html::table( -3, 'ip', 'mac', 'dev',  
                                         map {  
                                                 my $c = $arp->{$_};  
                                                 ( $c->[0], format::mac( $_ => 'html' ), $c->[1] )  
                                         } sort keys %$arp  
                                 )  
291                                  ;                                  ;
292                  }                  }
293          } elsif ( $path =~ m{^/brctl} ) {          } elsif ( $path =~ m{^/brctl} ) {
# Line 302  warn "XXX pids = ", dump( $daemons::pids Line 299  warn "XXX pids = ", dump( $daemons::pids
299                          , join("\n", map { qq|<a href=/ip/$_>$_</a>| } ( qw/link addr route neigh ntable tunnel maddr mroute xfrm/ ))                          , join("\n", map { qq|<a href=/ip/$_>$_</a>| } ( qw/link addr route neigh ntable tunnel maddr mroute xfrm/ ))
300                          , ip::html( $1 )                          , ip::html( $1 )
301                          ;                          ;
302            } elsif ( $path =~ m{^/nmap} ) {
303                    if ( my $scan = $param->{scan} ) {
304                            nmap::scan( $scan );
305                            print $client redirect("$url/client#$scan");
306                    } else {
307                            print $client ok, qq|
308                                    <form method=get>
309                                    <input type=text name=scan>
310                                    <input type=submit value=scan>
311                                    </form>
312                            |;
313                    }
314          } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) {          } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) {
315                  eval 'our $' . $1 . ' = ' . $2;                  eval 'our $' . $1 . ' = ' . $2;
316                  warn $@ if $@;                  warn $@ if $@;

Legend:
Removed from v.306  
changed lines
  Added in v.314

  ViewVC Help
Powered by ViewVC 1.1.26