--- lib/PXElator/httpd.pm 2009/08/28 16:41:46 322 +++ lib/PXElator/httpd.pm 2009/08/28 19:44:38 328 @@ -210,24 +210,26 @@ } 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; -warn dump( $ip_int, $from, $to ); - - # show edit for our our class + # show edit for clients in our dhcp range if ( $ip_int >= ( $network | $server::ip_from ) && $ip_int <= ( $network | $server::ip_to ) ) { $ip = $peer_ip; } @@ -257,7 +259,10 @@ print $client ok , qq|
| , html::table( 2, @table ), - , qq|
| + , qq| + + + | , $deploy ; @@ -271,7 +276,7 @@ my @c = split(/\s+/,$_); if ( $#c == 5 ) { client::save_ip_mac( $c[0], $c[3] ); - ( uc $c[3] => [ $c[0] , $c[5] ] ) + ( uc $c[3] => $c[5] ) } else { } } read_file('/proc/net/arp') @@ -282,7 +287,7 @@ print $client ok , qq|

Clients on $server::ip

| , html::table( -6, - 'ip', 'mac', 'arp', 'hostname', 'deploy', 'conf', + 'ip', 'mac', 'dev', 'hostname', 'deploy', 'conf', map { my $ip = $_; my $conf = client::all_conf( $ip ); @@ -290,7 +295,7 @@ ( qq|$ip| , format::mac( $mac => 'html' ) - , ( $arp->{$mac} ? $arp->{$mac}->[1] : '' ) + , $arp->{$mac} , delete $conf->{hostname} , delete $conf->{deploy} , ( %$conf ? html::pre_dump( $conf ) : qq|nmap| ) @@ -366,6 +371,7 @@ if ($request =~ m{^GET (/.*) HTTP/1.[01]}) { my $path = $1; + $path =~ s/%([0-9A-Fa-f]{2})/chr(hex($1))/ge; my $param; if ( $path =~ s{\?(.+)}{} ) { foreach my $p ( split(/[&;]/, $1) ) {