mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-27 03:07:43 +02:00
Added enhancements for outgoing fw to core34.
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
|
||||
# Copyright (C) 2009 Michael Tremer & Christian Schmidt #
|
||||
# #
|
||||
# This program is free software: you can redistribute it and/or modify #
|
||||
# it under the terms of the GNU General Public License as published by #
|
||||
@@ -64,6 +64,7 @@ $outfwsettings{'DISPLAY_DPORT'} = '';
|
||||
$outfwsettings{'DISPLAY_SMAC'} = '';
|
||||
$outfwsettings{'DISPLAY_SIP'} = '';
|
||||
$outfwsettings{'POLICY'} = 'MODE0';
|
||||
|
||||
my $SOURCE = "";
|
||||
my $DESTINATION = "";
|
||||
my $PROTO = "";
|
||||
@@ -72,12 +73,14 @@ my $DEV = "";
|
||||
my $MAC = "";
|
||||
my $POLICY = "";
|
||||
my $DO = "";
|
||||
my $DAY = "";
|
||||
|
||||
# read files
|
||||
&General::readhash("${General::swroot}/outgoing/settings", \%outfwsettings);
|
||||
&General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
|
||||
|
||||
$netsettings{'RED_DEV'}=`cat /var/ipfire/red/iface`;
|
||||
$netsettings{'RED_IP'}=`cat /var/ipfire/red/local-ipaddress`;
|
||||
|
||||
open( FILE, "< $configfile" ) or die "Unable to read $configfile";
|
||||
@configs = <FILE>;
|
||||
@@ -122,6 +125,9 @@ foreach $configentry (sort @configs)
|
||||
if ($configline[2] eq 'green') {
|
||||
$SOURCE = "$netsettings{'GREEN_NETADDRESS'}/$netsettings{'GREEN_NETMASK'}";
|
||||
$DEV = $netsettings{'GREEN_DEV'};
|
||||
} elsif ($configline[2] eq 'red') {
|
||||
$SOURCE = "$netsettings{'RED_IP'}";
|
||||
$DEV = "";
|
||||
} elsif ($configline[2] eq 'blue') {
|
||||
$SOURCE = "$netsettings{'BLUE_NETADDRESS'}/$netsettings{'BLUE_NETMASK'}";
|
||||
$DEV = $netsettings{'BLUE_DEV'};
|
||||
@@ -142,8 +148,6 @@ foreach $configentry (sort @configs)
|
||||
@proto = ("tcp");
|
||||
} elsif ($configline[3] eq 'udp') {
|
||||
@proto = ("udp");
|
||||
} elsif ($configline[3] eq 'all') {
|
||||
@proto = ("all");
|
||||
} else {
|
||||
@proto = ("tcp", "udp");
|
||||
}
|
||||
@@ -165,6 +169,17 @@ foreach $configentry (sort @configs)
|
||||
$CMD = "$CMD -m mac --mac-source $MAC";
|
||||
}
|
||||
|
||||
if ($configline[17] && $configline[18]) {
|
||||
if ($configline[10]){$DAY = "Mon,"}
|
||||
if ($configline[11]){$DAY .= "Tue,"}
|
||||
if ($configline[12]){$DAY .= "Wed,"}
|
||||
if ($configline[13]){$DAY .= "Thu,"}
|
||||
if ($configline[14]){$DAY .= "Fri,"}
|
||||
if ($configline[15]){$DAY .= "Sat,"}
|
||||
if ($configline[16]){$DAY .= "Sun"}
|
||||
$CMD = "$CMD -m time --timestart $configline[17] --timestop $configline[18] --weekdays $DAY";
|
||||
}
|
||||
|
||||
$CMD = "$CMD -o $netsettings{'RED_DEV'}";
|
||||
|
||||
if ($configline[9] eq "aktiv") {
|
||||
@@ -230,4 +245,4 @@ if ( $outfwsettings{'POLICY'} eq 'MODE1' ) {
|
||||
} else {
|
||||
system("$CMD");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -6,8 +6,10 @@ srv/web/ipfire/cgi-bin/index.cgi
|
||||
srv/web/ipfire/cgi-bin/mac.cgi
|
||||
srv/web/ipfire/cgi-bin/extrahd.cgi
|
||||
srv/web/ipfire/cgi-bin/chpasswd.cgi
|
||||
srv/web/ipfire/cgi-bin/outgoingfw.cgi
|
||||
var/ipfire/langs/en.pl
|
||||
var/ipfire/langs/de.pl
|
||||
var/ipfire/langs/fr.pl
|
||||
var/ipfire/langs/list
|
||||
usr/local/sbin/setup
|
||||
var/ipfire/outgoing/bin/outgoingfw.pl
|
||||
usr/local/sbin/setup
|
||||
Reference in New Issue
Block a user