| Server IP : 104.21.25.180 / Your IP : 162.159.115.41 Web Server : Apache/2.4.37 System : Linux almalinux.duckdns.org 4.18.0-553.111.1.el8_10.x86_64 #1 SMP Sun Mar 8 20:06:07 EDT 2026 x86_64 User : ricodeal ( 1046) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/libexec/webmin/dhcpd/ |
Upload File : |
#!/usr/bin/perl
# $Id: save_keys.cgi,v 1.2 2005/04/16 14:30:21 jfranken Exp $
# File added 2005-04-15 by Johannes Franken <[email protected]>
# Distributed under the terms of the GNU General Public License, v2 or later
#
# * Save key directives to configfile
require './dhcpd-lib.pl';
require './params-lib.pl';
&ReadParse();
&lock_all_files();
$conf = &get_config();
$client = &get_parent_config();
@old = &find("key", $conf);
for($i=0; defined($id = $in{"id_$i"}); $i++) {
next if (!$id);
$id =~ /^\S+$/ || &error(&text('keys_ekey', $id));
$in{"secret_$i"} =~ /^\S+$/ || &error(&text('keys_esecret', $id));
local $k = { 'name' => 'key',
'type' => 1 };
$k->{'members'} = $old[$i] ? $old[$i]->{'members'} : [ ];
$k->{'values'} = [ $id ];
&save_directive($k, "algorithm", [ { 'name' => 'algorithm',
'values' => [ $in{"alg_$i"} ] } ], 1, 1);
&save_directive($k, "secret", [ { 'name' => 'secret',
'values' => [ $in{"secret_$i"} ] } ], 1, 1);
push(@keys, $k);
}
&save_directive($client, 'key', \@keys, 0);
&flush_file_lines();
&unlock_all_files();
&webmin_log("keys", undef, undef, \%in);
&redirect("");