summaryrefslogtreecommitdiffstats
path: root/src/etc/phpshellsessions/enableallowallwan
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2015-08-25 08:08:24 -0300
committerRenato Botelho <renato@netgate.com>2015-08-25 14:49:54 -0300
commit46bc6e545a17e77202aaf01ec0cd8d5a46567525 (patch)
tree32d18dda436ec739c67c489ceb771e8629cd926f /src/etc/phpshellsessions/enableallowallwan
parent4d9801c2dbd2b3e54a39578ee62b93af66607227 (diff)
downloadpfsense-46bc6e545a17e77202aaf01ec0cd8d5a46567525.zip
pfsense-46bc6e545a17e77202aaf01ec0cd8d5a46567525.tar.gz
Move main pfSense content to src/
Diffstat (limited to 'src/etc/phpshellsessions/enableallowallwan')
-rw-r--r--src/etc/phpshellsessions/enableallowallwan36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/etc/phpshellsessions/enableallowallwan b/src/etc/phpshellsessions/enableallowallwan
new file mode 100644
index 0000000..5ce4f0f
--- /dev/null
+++ b/src/etc/phpshellsessions/enableallowallwan
@@ -0,0 +1,36 @@
+global $config;
+require_once("filter.inc");
+require("shaper.inc");
+$config = parse_config(true);
+echo "Adding allow all rule...\n";
+$filterent = array();
+$filterent["type"] = "pass";
+$filterent["interface"] = "wan";
+$filterent["source"]["any"] = "";
+$filterent["destination"]["any"] = "";
+$filterent["statetype"] = "keep state";
+$filterent["os"] = "";
+$filterent["descr"] = "Allow all ipv4 via pfSsh.php";
+$config["filter"]["rule"][] = $filterent;
+$filterent = array();
+$filterent["type"] = "pass";
+$filterent["ipprotocol"] = "inet6";
+$filterent["interface"] = "wan";
+$filterent["source"]["any"] = "";
+$filterent["destination"]["any"] = "";
+$filterent["statetype"] = "keep state";
+$filterent["os"] = "";
+$filterent["descr"] = "Allow all ipv6 via pfSsh.php";
+$config["filter"]["rule"][] = $filterent;
+echo "Turning off block private networks (if on)...\n";
+unset($config["interfaces"]["wan"]["blockpriv"]);
+echo "Turning off block bogon networks (if on)...\n";
+unset($config["interfaces"]["wan"]["blockbogons"]);
+unlink_if_exists("/tmp/config.cache");
+write_config("pfSsh.php added allow all wan rule");
+unlink_if_exists("/tmp/config.cache");
+unset($config['interfaces']['wan']['blockbogons']);
+$config = parse_config(true);
+echo "Reloading the filter configuration...";
+filter_configure_sync();
+echo "\n\n"; \ No newline at end of file
OpenPOWER on IntegriCloud