summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/system_advanced_network.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/local/www/system_advanced_network.php')
-rw-r--r--src/usr/local/www/system_advanced_network.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/usr/local/www/system_advanced_network.php b/src/usr/local/www/system_advanced_network.php
index c770603..0a69be9 100644
--- a/src/usr/local/www/system_advanced_network.php
+++ b/src/usr/local/www/system_advanced_network.php
@@ -32,7 +32,7 @@
POSSIBILITY OF SUCH DAMAGE.
*/
/*
- pfSense_MODULE: system
+ pfSense_MODULE: system
*/
##|+PRIV
@@ -170,7 +170,7 @@ $form = new Form;
$section = new Form_Section('IPv6 Options');
$section->addInput(new Form_Checkbox(
- 'allow-ipv6',
+ 'ipv6allow',
'Allow IPv6',
'All IPv6 traffic will be blocked by the firewall unless this box is checked',
$pconfig['ipv6allow']
@@ -179,15 +179,15 @@ $section->addInput(new Form_Checkbox(
$group = new Form_Group('IPv6 over IPv4 Tunneling');
$group->add(new Form_Checkbox(
- 'ipv6-over-ipv4-tunneling',
+ 'ipv6nat_enable',
'IPv6 over IPv4 Tunneling',
'Enable IPv4 NAT encapsulation of IPv6 packets',
- $pconfig['ipv6allow']
+ $pconfig['ipv6nat_enable']
))->setHelp('NOTE: This does not disable any IPv6 features on the firewall, it only '.
'blocks traffic.');
$group->add(new Form_Input(
- 'ip-address',
+ 'ipv6nat_ipaddr',
'IP address',
'text',
$pconfig['ipv6nat_ipaddr']
@@ -199,7 +199,7 @@ $group->add(new Form_Input(
$section->add($group);
$section->addInput(new Form_Checkbox(
- 'prefer-ipv4-over-ipv6',
+ 'prefer_ipv4',
'Prefer IPv4 over IPv6',
'Prefer to use IPv4 even if IPv6 is available',
$pconfig['prefer_ipv4']
@@ -210,7 +210,7 @@ $form->add($section);
$section = new Form_Section('Network Interfaces');
$section->addInput(new Form_Checkbox(
- 'device-polling',
+ 'polling_enable',
'Device polling',
'Enable device polling',
$pconfig['polling_enable']
@@ -222,7 +222,7 @@ $section->addInput(new Form_Checkbox(
$section->addInput(new Form_Checkbox(
- 'hardware-checksum-offloading',
+ 'disablechecksumoffloading',
'Hardware Checksum Offloading',
'Disable hardware checksum offload',
isset($config['system']['disablechecksumoffloading'])
@@ -233,7 +233,7 @@ $section->addInput(new Form_Checkbox(
'interface.');
$section->addInput(new Form_Checkbox(
- 'hardware-tcp-segmentation-offloading',
+ 'disablesegmentationoffloading',
'Hardware TCP Segmentation Offloading',
'Disable hardware TCP segmentation offload',
isset($config['system']['disablesegmentationoffloading'])
@@ -243,7 +243,7 @@ $section->addInput(new Form_Checkbox(
'effect after you reboot the machine or re-configure each interface.');
$section->addInput(new Form_Checkbox(
- 'hardware-large-receive-offloading',
+ 'disablelargereceiveoffloading',
'Hardware Large Receive Offloading',
'Disable hardware large receive offload',
isset($config['system']['disablelargereceiveoffloading'])
@@ -253,7 +253,7 @@ $section->addInput(new Form_Checkbox(
'machine or re-configure each interface.');
$section->addInput(new Form_Checkbox(
- 'arp-handling',
+ 'sharednet',
'ARP Handling',
'Suppress ARP messages',
isset($pconfig['sharednet'])
@@ -263,7 +263,7 @@ $section->addInput(new Form_Checkbox(
if (get_freebsd_version() == 8)
{
$section->addInput(new Form_Checkbox(
- 'Enable Flowtable',
+ 'flowtable',
'Enable flowtable support',
$pconfig['flowtable']
))->setHelp('Enables infrastructure for caching flows as a means of accelerating '.
OpenPOWER on IntegriCloud