--- lib/PXElator/httpd.pm 2009/08/28 15:58:25 320 +++ lib/PXElator/httpd.pm 2009/08/29 00:06:32 335 @@ -56,6 +56,8 @@ use wireshark; use syslogd; use nmap; +use ping; +use wol; use CouchDB; @@ -210,25 +212,28 @@ } elsif ( $path =~ m!^/client(?:/$RE{net}{IPv4}{-keep})?! ) { 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; -warn "XXX peer_ip $peer_ip"; - - my $netmask = ip::to_int $server::netmask; - my $network = ip::to_int $server::ip & $netmask; - my ( $from, $to ) = ( $network | $server::ip_from, $network | $server::ip_to ); - my $ip_int = ip::to_int $peer_ip; + 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; -warn dump( $ip_int, $from, $to ); - - # show edit for our our class - if ( $ip_int >= ( $network | $server::ip_from ) && $ip_int <= ( $network | $server::ip_to ) ) { + # show edit for clients in our dhcp range + if ( $ip_int >= $from_int && $ip_int <= $to_int ) { $ip = $peer_ip; } } @@ -239,76 +244,92 @@ my @table = ( 'ip' => qq|