--- lib/PXElator/httpd.pm 2009/08/27 12:42:53 303 +++ lib/PXElator/httpd.pm 2009/08/30 15:22:41 376 @@ -26,6 +26,7 @@ server brctl ip +nmap client @@ -54,6 +55,9 @@ use ip; use wireshark; use syslogd; +use nmap; +use ping; +use wol; use CouchDB; @@ -206,98 +210,150 @@ ) ; } elsif ( $path =~ m!^/client(?:/$RE{net}{IPv4}{-keep})?! ) { - my $ip = $1 || $client->peerhost; + my $ip = $1; - if ( my $new_ip = $param->{change_ip} ) { - client::change_ip( $ip, $new_ip ); - $ip = $new_ip; + if ( $param->{action} eq 'remove' ) { + client::remove( $param->{change_ip} ); + print $client redirect("$url/client"); + return; + } elsif ( $param->{action} eq 'change' ) { + if ( my $new_ip = client::change_ip( $ip, $param->{change_ip} ) ) { + print $client redirect("$url/client#$new_ip"); + return; + } + } + + if ( ! $ip ) { + my $peer_ip = $client->peerhost; + + my $netmask = ip::to_int $server::netmask; + my $network = ip::to_int($server::ip) & $netmask; + my $from_int = $network | $server::ip_from; + my $to_int = $network | $server::ip_to; + my $ip_int = ip::to_int $peer_ip; + + # show edit for clients in our dhcp range + if ( $ip_int >= $from_int && $ip_int <= $to_int ) { + $ip = $peer_ip; + } } - my $ip_short = (split(/\./, $ip, 4))[3]; + if ( $ip && $ip ne $server::ip ) { + + my @editable = ( qw/hostname config homepage/ ); - # if ( $ip ne $server::ip ) -- not flexible enough for tunnel endpoints - if ( $ip_short >= $server::ip_from && $ip_short <= $server::ip_to ) { - my $hostname = client::conf( $ip, 'hostname' => $param->{hostname} ); + client::conf( $ip, $_ => $param->{$_} ) foreach @editable; + my $conf = client::all_conf( $ip ); + my $config = delete $conf->{config}; + + my $nmap = qq|nmap|; my @table = ( + 'ping' => ping::host($ip) + ? qq|up $nmap| + : qq|down wol $nmap| + , 'ip' => qq|