. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ $pgtitle = "Firewall: Rules"; require("guiconfig.inc"); if (!is_array($config['filter']['rule'])) { $config['filter']['rule'] = array(); } filter_rules_sort(); $a_filter = &$config['filter']['rule']; $if = $_GET['if']; if ($_POST['if']) $if = $_POST['if']; $iflist = array("lan" => "LAN", "wan" => "WAN"); for ($i = 1; isset($config['interfaces']['opt' . $i]); $i++) { $iflist['opt' . $i] = $config['interfaces']['opt' . $i]['descr']; } if ($config['pptpd']['mode'] == "server") $iflist['pptp'] = "PPTP VPN"; if ($config['pppoe']['mode'] == "server") $iflist['pppoe'] = "PPPoE VPN"; /* add ipsec interfaces */ if (isset($config['ipsec']['enable']) || isset($config['ipsec']['mobileclients']['enable'])){ $iflist["enc0"] = "IPsec"; } for ($i = 1; isset($config['interfaces']['opt' . $i]); $i++) { $iflist['opt' . $i] = $config['interfaces']['opt' . $i]['descr']; } if (!$if || !isset($iflist[$if])) $if = "wan"; if ($_POST) { $pconfig = $_POST; if ($_POST['apply']) { $retval = 0; config_lock(); $retval = filter_configure(); config_unlock(); if (file_exists($d_filterconfdirty_path)) unlink($d_filterconfdirty_path); $savemsg = "The settings have been applied. The firewall rules are now reloading in the background. You can also monitor the reload progress."; } } if ($_GET['act'] == "del") { if ($a_filter[$_GET['id']]) { unset($a_filter[$_GET['id']]); write_config(); touch($d_filterconfdirty_path); header("Location: firewall_rules.php?if={$if}"); exit; } } if (isset($_POST['del_x'])) { /* delete selected rules */ if (is_array($_POST['rule']) && count($_POST['rule'])) { foreach ($_POST['rule'] as $rulei) { unset($a_filter[$rulei]); } write_config(); touch($d_filterconfdirty_path); header("Location: firewall_rules.php?if={$if}"); exit; } } else if ($_GET['act'] == "toggle") { if ($a_filter[$_GET['id']]) { if(isset($a_filter[$_GET['id']]['disabled'])) unset($a_filter[$_GET['id']]['disabled']); else $a_filter[$_GET['id']]['disabled'] = true; write_config(); touch($d_filterconfdirty_path); header("Location: firewall_rules.php?if={$if}"); exit; } } else { /* yuck - IE won't send value attributes for image buttons, while Mozilla does - so we use .x/.y to fine move button clicks instead... */ unset($movebtn); foreach ($_POST as $pn => $pd) { if (preg_match("/move_(\d+)_x/", $pn, $matches)) { $movebtn = $matches[1]; break; } } /* move selected rules before this rule */ if (isset($movebtn) && is_array($_POST['rule']) && count($_POST['rule'])) { $a_filter_new = array(); /* copy all rules < $movebtn and not selected */ for ($i = 0; $i < $movebtn; $i++) { if (!in_array($i, $_POST['rule'])) $a_filter_new[] = $a_filter[$i]; } /* copy all selected rules */ for ($i = 0; $i < count($a_filter); $i++) { if ($i == $movebtn) continue; if (in_array($i, $_POST['rule'])) $a_filter_new[] = $a_filter[$i]; } /* copy $movebtn rule */ if ($movebtn < count($a_filter)) $a_filter_new[] = $a_filter[$movebtn]; /* copy all rules > $movebtn and not selected */ for ($i = $movebtn+1; $i < count($a_filter); $i++) { if (!in_array($i, $_POST['rule'])) $a_filter_new[] = $a_filter[$i]; } $a_filter = $a_filter_new; write_config(); touch($d_filterconfdirty_path); header("Location: firewall_rules.php?if={$if}"); exit; } } $closehead = false; include("head.inc"); echo ""; echo ""; echo ""; echo ""; ?>

You must apply the changes in order for them to take effect.");?>
"" and is_array($config['aliases']['alias'])) { foreach($config['aliases']['alias'] as $alias_name) { $alias_addresses = explode (" ", $alias_name['address']); $alias_details = explode ("||", $alias_name['detail']); $alias_objects_with_details = ""; $counter = 0; foreach($alias_addresses as $alias_ports_address) { $alias_objects_with_details .= $alias_addresses[$counter]; $alias_detail_default = strpos ($alias_details[$counter],"Entry added"); if ($alias_details[$counter] != "" && $alias_detail_default === False){ $alias_objects_with_details .=" - " . $alias_details[$counter]; } $alias_objects_with_details .= "
"; $counter++; } $aliases_array[] = array($alias_name['name'], $alias_name['descr'], $alias_objects_with_details); } } ?>
$ifname) { if ($ifent == $if) $active = true; else $active = false; $tab_array[] = array($ifname, $active, "firewall_rules.php?if={$ifent}"); } display_top_tabs($tab_array); ?>
= $maxlength) $alias_caption = substr($alias_caption, 0, $maxlength) . "..."; $alias_check_src = $filterent['source']['address']; $alias_check_srcport = pprint_port($filterent['source']['port']); $alias_check_dst = $filterent['destination']['address']; $alias_check_dstport = pprint_port($filterent['destination']['port']); $span_begin = "$alias_caption

$alias_content_text

', 'trail', true, 'delay', 0, 'fade', 'both', 'fadeMax', 93, 'styleClass', 'niceTitle');\" onmouseout=\"this.style.color = ''; domTT_mouseout(this, event);\">"; $span_end = "
"; if ($alias_id_substr == $alias_check_src) { $alias_src_span_begin = $span_begin; $alias_src_span_end = $span_end; } if ($alias_id_substr == $alias_check_srcport) { $alias_src_port_span_begin = $span_begin; $alias_src_port_span_end = $span_end; } if ($alias_id_substr == $alias_check_dst) { $alias_dst_span_begin = $span_begin; $alias_dst_span_end = $span_end; } if ($alias_id_substr == $alias_check_dstport) { $alias_dst_port_span_begin = $span_begin; $alias_dst_port_span_end = $span_end; } } $printicon = false; if ($schedstatus) { if ($iconfn == "block" || $iconfn == "reject") { $image = "icon_clock_red"; $alttest = "Traffic matching this rule is currently being denied"; } else { $image = "icon_clock_green"; $alttest = "Traffic matching this rule is currently being allowed"; } $printicon = true; } else if ($filterent['sched'] ) { if ($iconfn == "block" || $iconfn == "reject") { $image = "icon_clock_green"; $alttext = "Traffic matching this rule is currently being allowed"; } else { $image = "icon_clock_red"; $alttext = "Traffic matching this rule is currently being denied"; } $printicon = true; } //build Schedule popup box $a_schedules = &$config['schedules']['schedule']; $schedule_span_begin = ""; $schedule_span_end = ""; $sched_caption = ""; $sched_content = ""; $schedstatus = false; $dayArray = array ('Mon','Tues','Wed','Thur','Fri','Sat','Sun'); $monthArray = array ('January','February','March','April','May','June','July','August','September','October','November','December'); if(is_array($a_schedules)) foreach ($a_schedules as $schedule) { if ($schedule['name'] == $filterent['sched'] ){ $schedstatus = get_time_based_rule_status($schedule); foreach($schedule['timerange'] as $timerange) { $tempFriendlyTime = ""; $tempID = ""; $firstprint = false; if ($timerange){ $dayFriendly = ""; $tempFriendlyTime = ""; //get hours $temptimerange = $timerange['hour']; $temptimeseparator = strrpos($temptimerange, "-"); $starttime = substr ($temptimerange, 0, $temptimeseparator); $stoptime = substr ($temptimerange, $temptimeseparator+1); if ($timerange['month']){ $tempmontharray = explode(",", $timerange['month']); $tempdayarray = explode(",",$timerange['day']); $arraycounter = 0; $firstDayFound = false; $firstPrint = false; foreach ($tempmontharray as $monthtmp){ $month = $tempmontharray[$arraycounter]; $day = $tempdayarray[$arraycounter]; if (!$firstDayFound) { $firstDay = $day; $firstmonth = $month; $firstDayFound = true; } $currentDay = $day; $nextDay = $tempdayarray[$arraycounter+1]; $currentDay++; if (($currentDay != $nextDay) || ($tempmontharray[$arraycounter] != $tempmontharray[$arraycounter+1])){ if ($firstPrint) $dayFriendly .= ", "; $currentDay--; if ($currentDay != $firstDay) $dayFriendly .= $monthArray[$firstmonth-1] . " " . $firstDay . " - " . $currentDay ; else $dayFriendly .= $monthArray[$month-1] . " " . $day; $firstDayFound = false; $firstPrint = true; } $arraycounter++; } } else { $tempdayFriendly = $timerange['position']; $firstDayFound = false; $tempFriendlyDayArray = explode(",", $tempdayFriendly); $currentDay = ""; $firstDay = ""; $nextDay = ""; $counter = 0; foreach ($tempFriendlyDayArray as $day){ if ($day != ""){ if (!$firstDayFound) { $firstDay = $tempFriendlyDayArray[$counter]; $firstDayFound = true; } $currentDay =$tempFriendlyDayArray[$counter]; //get next day $nextDay = $tempFriendlyDayArray[$counter+1]; $currentDay++; if ($currentDay != $nextDay){ if ($firstprint) $dayFriendly .= ", "; $currentDay--; if ($currentDay != $firstDay) $dayFriendly .= $dayArray[$firstDay-1] . " - " . $dayArray[$currentDay-1]; else $dayFriendly .= $dayArray[$firstDay-1]; $firstDayFound = false; $firstprint = true; } $counter++; } } } $timeFriendly = $starttime . " - " . $stoptime; $description = $timerange['rangedescr']; $sched_content .= $dayFriendly . "; " . $timeFriendly . "
"; } } $sched_caption = $schedule['descr']; $schedule_span_begin = "$sched_caption

$sched_content

', 'trail', true, 'delay', 0, 'fade', 'both', 'fadeMax', 93, 'styleClass', 'niceTitle');\" onmouseout=\"this.style.color = ''; domTT_mouseout(this, event);\">"; $schedule_span_end = "
"; } } $printicon = false; $alttext = ""; $image = ""; if (!isset($filterent['disabled'])){ if ($schedstatus) { if ($iconfn == "block" || $iconfn == "reject") { $image = "icon_block"; $alttext = "Traffic matching this rule is currently being denied"; } else { $image = "icon_pass"; $alttext = "Traffic matching this rule is currently being allowed"; } $printicon = true; } else if ($filterent['sched']) { if ($iconfn == "block" || $iconfn == "reject") { $image = "icon_block_d"; $alttext = "Traffic matching this rule is currently being allowed"; } else { $image = "icon_block"; $alttext = "Traffic matching this rule is currently being denied"; } $printicon = true; } } ?>
    Proto Source Port Destination Port Gateway Schedule Description
  * RFC 1918 networks * * * * * Block private networks
  * Reserved/not assigned by IANA * * * * * Block bogon networks
"; $textse = ""; $iconfn .= "_d"; } else { $textss = $textse = ""; } ?>
   
No rules are currently defined for this interface.
All incoming connections on this interface will be blocked until you add pass rules.

Click the button to add a new rule.
               
pass block reject log
pass (disabled)   block (disabled)   reject (disabled)   log (disabled)

Hint:
Rules are evaluated on a first-match basis (i.e. the action of the first rule to match a packet will be executed). This means that if you use block rules, you'll have to pay attention to the rule order. Everything that isn't explicitly passed is blocked by default.