summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-10-09 23:40:41 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-10-09 23:40:41 +0000
commit588a183b0e58f09932ffef35cc0003cca2313aba (patch)
tree07f8baa177cd888a099370e301cd6007806f7e27
parent7075d40ad61e5016e83823afc29473bb7b91c334 (diff)
downloadpfsense-588a183b0e58f09932ffef35cc0003cca2313aba.zip
pfsense-588a183b0e58f09932ffef35cc0003cca2313aba.tar.gz
Move wan gateway to interfaces->wan->gateway
-rw-r--r--etc/inc/config.inc2
-rw-r--r--etc/inc/interfaces.inc2
-rwxr-xr-xusr/local/www/interfaces.php6
-rwxr-xr-xusr/local/www/interfaces_wan.php6
4 files changed, 8 insertions, 8 deletions
diff --git a/etc/inc/config.inc b/etc/inc/config.inc
index 7d41bc5..c117079 100644
--- a/etc/inc/config.inc
+++ b/etc/inc/config.inc
@@ -580,7 +580,7 @@ function convert_config() {
/* Default route moved */
if (isset($config['interfaces']['wan']['gateway']))
if ($config['interfaces']['wan']['gateway'] <> "")
- $config['system']['gateway'] = $config['interfaces']['wan']['gateway'];
+ $config['interfaces']['wan']['gateway'] = $config['interfaces']['wan']['gateway'];
unset($config['interfaces']['wan']['gateway']);
/* Queues are no longer interface specific */
diff --git a/etc/inc/interfaces.inc b/etc/inc/interfaces.inc
index 339d870..d6433f0 100644
--- a/etc/inc/interfaces.inc
+++ b/etc/inc/interfaces.inc
@@ -713,7 +713,7 @@ function interfaces_wan_configure() {
}
/* install default route */
mwexec("/sbin/route delete default");
- mwexec("/sbin/route add default " . escapeshellarg($config['system']['gateway']));
+ mwexec("/sbin/route add default " . escapeshellarg($config['interfaces']['wan']['gateway']));
/* resync pf (done automatically for DHCP/PPPoE/PPTP) */
filter_configure();
diff --git a/usr/local/www/interfaces.php b/usr/local/www/interfaces.php
index 2872587..7c25a47 100755
--- a/usr/local/www/interfaces.php
+++ b/usr/local/www/interfaces.php
@@ -71,7 +71,7 @@ if ($wancfg['ipaddr'] == "dhcp") {
$pconfig['type'] = "Static";
$pconfig['ipaddr'] = $wancfg['ipaddr'];
$pconfig['subnet'] = $wancfg['subnet'];
- $pconfig['gateway'] = $config['system']['gateway'];
+ $pconfig['gateway'] = $config['interfaces']['wan']['gateway'];
$pconfig['pointtopoint'] = $wancfg['pointtopoint'];
}
@@ -191,7 +191,7 @@ if ($_POST) {
unset($wancfg['ipaddr']);
unset($wancfg['subnet']);
- unset($config['system']['gateway']);
+ unset($config['interfaces']['wan']['gateway']);
unset($wancfg['pointtopoint']);
unset($wancfg['dhcphostname']);
unset($config['pppoe']['username']);
@@ -215,7 +215,7 @@ if ($_POST) {
if ($_POST['type'] == "Static") {
$wancfg['ipaddr'] = $_POST['ipaddr'];
$wancfg['subnet'] = $_POST['subnet'];
- $config['system']['gateway'] = $_POST['gateway'];
+ $config['interfaces']['wan']['gateway'] = $_POST['gateway'];
if (isset($wancfg['ispointtopoint']))
$wancfg['pointtopoint'] = $_POST['pointtopoint'];
} else if ($_POST['type'] == "DHCP") {
diff --git a/usr/local/www/interfaces_wan.php b/usr/local/www/interfaces_wan.php
index 2872587..7c25a47 100755
--- a/usr/local/www/interfaces_wan.php
+++ b/usr/local/www/interfaces_wan.php
@@ -71,7 +71,7 @@ if ($wancfg['ipaddr'] == "dhcp") {
$pconfig['type'] = "Static";
$pconfig['ipaddr'] = $wancfg['ipaddr'];
$pconfig['subnet'] = $wancfg['subnet'];
- $pconfig['gateway'] = $config['system']['gateway'];
+ $pconfig['gateway'] = $config['interfaces']['wan']['gateway'];
$pconfig['pointtopoint'] = $wancfg['pointtopoint'];
}
@@ -191,7 +191,7 @@ if ($_POST) {
unset($wancfg['ipaddr']);
unset($wancfg['subnet']);
- unset($config['system']['gateway']);
+ unset($config['interfaces']['wan']['gateway']);
unset($wancfg['pointtopoint']);
unset($wancfg['dhcphostname']);
unset($config['pppoe']['username']);
@@ -215,7 +215,7 @@ if ($_POST) {
if ($_POST['type'] == "Static") {
$wancfg['ipaddr'] = $_POST['ipaddr'];
$wancfg['subnet'] = $_POST['subnet'];
- $config['system']['gateway'] = $_POST['gateway'];
+ $config['interfaces']['wan']['gateway'] = $_POST['gateway'];
if (isset($wancfg['ispointtopoint']))
$wancfg['pointtopoint'] = $_POST['pointtopoint'];
} else if ($_POST['type'] == "DHCP") {
OpenPOWER on IntegriCloud