summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2006-04-02 06:15:47 +0000
committerScott Ullrich <sullrich@pfsense.org>2006-04-02 06:15:47 +0000
commit81b0124c24dffa2f86257120b7cede1e6170efae (patch)
tree590581250dbf8046bf270f831c3eb9dab0c54f71 /etc
parente7f171ad2a803cfc1ed8bd2744863184aba99da7 (diff)
downloadpfsense-81b0124c24dffa2f86257120b7cede1e6170efae.zip
pfsense-81b0124c24dffa2f86257120b7cede1e6170efae.tar.gz
Add more filter reload information for AJAX filter reload status application
Diffstat (limited to 'etc')
-rw-r--r--etc/inc/filter.inc5
1 files changed, 5 insertions, 0 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc
index 7dd46de..9181e6e 100644
--- a/etc/inc/filter.inc
+++ b/etc/inc/filter.inc
@@ -2172,12 +2172,14 @@ function create_firewall_outgoing_rules_to_itself() {
}
+ update_filter_reload_status("Setting up bridging items");
/* is bridging turned on? */
for($x=0; $x<10; $x++) {
if(does_interface_exist("bridge{$x}") == true)
$rule .="pass out quick on bridge{$x} all keep state label \"let out anything from firewall host itself\"\n";
}
+ update_filter_reload_status("Setting up pptp items");
/* netgraph pptp outgoing */
$n_pptp_units = $g['n_pptp_units'];
if($config['pptp']['n_pptp_units'] <> "")
@@ -2187,6 +2189,7 @@ function create_firewall_outgoing_rules_to_itself() {
$rule .="pass out quick on ng{$x} all keep state label \"let out anything from firewall host itself pptp\"\n";
}
+ update_filter_reload_status("Setting up pppoe items");
/* netgraph pppoe outgoing */
$n_pppoe_units = $g['n_pppoe_units'];
if($config['pppoe']['n_pppoe_units'] <> "")
@@ -2196,6 +2199,7 @@ function create_firewall_outgoing_rules_to_itself() {
$rule .="pass out quick on ng{$x} all keep state label \"let out anything from firewall host itself pppoe\"\n";
}
+ update_filter_reload_status("Setting up gif tunnels");
/* setup outgoing gif tunnels */
$number_of_gifs = find_last_gif_device();
$number_of_gifs++;
@@ -2204,6 +2208,7 @@ function create_firewall_outgoing_rules_to_itself() {
$rule .="pass out quick on gif{$x} all keep state label \"let out anything from firewall host itself ipsec gif\"\n";
}
+ update_filter_reload_status("Setting up tun interfaces (openvpn)");
/* openvpn tun interfaces. check for 100. */
for($x=0; $x<100; $x++) {
if(does_interface_exist("tun{$x}") == true)
OpenPOWER on IntegriCloud