mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-11 19:55:52 +02:00
Forward Firewall: added "apply" button to groupmanagement. Now the user can make all changes and finally click apply button to reread firewallrules.
Also added a comment in de.pl and en.pl which should remiond the user to click the button.
This commit is contained in:
committed by
Michael Tremer
parent
12dcfbbdbe
commit
cd9d9d8a13
@@ -552,7 +552,7 @@ sub addrule
|
||||
print "<table border='0'>";
|
||||
print "<tr><td><input type='submit' name='ACTION' value='$Lang::tr{'fwdfw newrule'}'></td>";
|
||||
if (-f "${General::swroot}/forward/reread"){
|
||||
print "<td><input type='submit' name='ACTION' value='$Lang::tr{'fwdfw reread'}'></td>";
|
||||
print "<td><input type='submit' name='ACTION' value='$Lang::tr{'fwdfw reread'}'>$Lang::tr{'fwhost reread'}</td>";
|
||||
}
|
||||
print"</tr></table></form><hr>";
|
||||
|
||||
|
||||
@@ -80,6 +80,11 @@ unless (-e $configsrvgrp) { system("touch $configsrvgrp"); }
|
||||
&Header::openbigbox('100%', 'center');
|
||||
|
||||
## ACTION ####
|
||||
if ($fwhostsettings{'ACTION'} eq $Lang::tr{'fwdfw reread'})
|
||||
{
|
||||
&reread_rules;
|
||||
&showmenu;
|
||||
}
|
||||
# Update
|
||||
if ($fwhostsettings{'ACTION'} eq 'updatenet' )
|
||||
{
|
||||
@@ -1003,9 +1008,15 @@ sub showmenu
|
||||
<table border='0' width='100%'><form method='post'>
|
||||
<tr><td><input type='submit' name='ACTION' value='$Lang::tr{'fwhost newnet'}' /><input type='submit' name='ACTION' value='$Lang::tr{'fwhost newhost'}' /><input type='submit' name='ACTION' value='$Lang::tr{'fwhost newgrp'}' /></td>
|
||||
<td align='right'><input type='submit' name='ACTION' value='$Lang::tr{'fwhost newservice'}' /><input type='submit' name='ACTION' value='$Lang::tr{'fwhost newservicegrp'}' /></td></tr>
|
||||
<tr><td colspan='6'><hr></hr></td></tr></table></form>
|
||||
<tr><td colspan='6'><hr></hr></td>
|
||||
END
|
||||
|
||||
|
||||
if (-f "${General::swroot}/fwhosts/reread"){
|
||||
print "</tr><tr><td colspan='6'><input type='submit' name='ACTION' value='$Lang::tr{'fwdfw reread'}'>$Lang::tr{'fwhost reread'}</td>";
|
||||
}
|
||||
print"</tr></table></form>";
|
||||
|
||||
&Header::closebox();
|
||||
|
||||
}
|
||||
@@ -1877,9 +1888,19 @@ sub getipforgroup
|
||||
}
|
||||
sub rules
|
||||
{
|
||||
system ("/usr/local/bin/forwardfwctrl");
|
||||
system("rm ${General::swroot}/forward/reread");
|
||||
if (!-f "${General::swroot}/fwhosts/reread"){
|
||||
system("touch ${General::swroot}/fwhosts/reread");
|
||||
}
|
||||
}
|
||||
sub reread_rules
|
||||
{
|
||||
system ("/usr/local/bin/forwardfwctrl");
|
||||
if ( -f "${General::swroot}/fwhosts/reread"){
|
||||
system("rm ${General::swroot}/fwhosts/reread");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
sub decrease
|
||||
{
|
||||
my $grp=$_[0];
|
||||
|
||||
@@ -1018,6 +1018,7 @@
|
||||
'fwhost ovpn_n2n' => 'OpenVPN N-2-N',
|
||||
'fwhost port' => 'Port(s)',
|
||||
'fwhost prot' => 'Protokoll',
|
||||
'fwhost reread' => 'Die Firewallregeln müssen neu eingelesen werden. Bitte Übernehmen klicken.',
|
||||
'fwhost reset' => 'Abbrechen',
|
||||
'fwhost services' => 'Dienste',
|
||||
'fwhost srv_name' => 'Dienstname',
|
||||
|
||||
@@ -1045,6 +1045,7 @@
|
||||
'fwhost ovpn_n2n' => 'OpenVPN N-2-N',
|
||||
'fwhost port' => 'Port(s)',
|
||||
'fwhost prot' => 'Protocol',
|
||||
'fwhost reread' => 'Firewallrules need to be updated. Please click applybutton.',
|
||||
'fwhost reset' => 'Cancel',
|
||||
'fwhost services' => 'Services',
|
||||
'fwhost srv_name' => 'Servicename',
|
||||
@@ -2480,7 +2481,6 @@
|
||||
'wlan client wpa mode tkip tkip' => 'TKIP-TKIP',
|
||||
'wlanap access point' => 'Access Point',
|
||||
'wlanap channel' => 'Channel',
|
||||
'wlanap country' => 'Country Code',
|
||||
'wlanap debugging' => 'Debugging',
|
||||
'wlanap del interface' => 'Remove selected interface?',
|
||||
'wlanap encryption' => 'Encryption',
|
||||
|
||||
Reference in New Issue
Block a user