mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Move failver vpn settings to ipsec area in a tab
Suggested-by: hoba
This commit is contained in:
parent
5dd24b7061
commit
83c5299b62
@ -24,6 +24,33 @@
|
||||
<fieldname>peerip</fieldname>
|
||||
</columnitem>
|
||||
</adddeleteeditpagefields>
|
||||
<tabs>
|
||||
<tab>
|
||||
<text>Tunnels</text>
|
||||
<url>vpn_ipsec.php</url>
|
||||
</tab>
|
||||
<tab>
|
||||
<text>Mobile clients</text>
|
||||
<url>vpn_ipsec_mobile.php</url>
|
||||
</tab>
|
||||
<tab>
|
||||
<text>Pre-shared keys</text>
|
||||
<url>vpn_ipsec_keys.php</url>
|
||||
</tab>
|
||||
<tab>
|
||||
<text>CAs</text>
|
||||
<url>vpn_ipsec_ca.php</url>
|
||||
</tab>
|
||||
<tab>
|
||||
<text>Pre-shared keys</text>
|
||||
<url>vpn_ipsec_keys.php</url>
|
||||
</tab>
|
||||
<tab>
|
||||
<text>Failover IPSEC</text>
|
||||
<url>/pkg_edit.php?xml=sasyncd.xml&id=0</url>
|
||||
<active/>
|
||||
</tab>
|
||||
</tabs>
|
||||
<!-- fields gets invoked when the user adds or edits a item. the following items
|
||||
will be parsed and rendered for the user as a gui with input, and selectboxes. -->
|
||||
<fields>
|
||||
|
||||
@ -111,9 +111,7 @@ function showhide_black(tspan, tri) {
|
||||
<a href="/services_snmp.php" class="navlnk">SNMP</a><br>
|
||||
<a href="/services_proxyarp.php" class="navlnk">Proxy ARP</a><br>
|
||||
<a href="/services_wol.php" class="navlnk">Wake on LAN</a><br>
|
||||
<a href="/carp_status.php" class="navlnk">CARP (failover)</a><br>
|
||||
<a href="/pkg_edit.php?xml=sasyncd.xml&id=0" class="navlnk">VPN failover</a><br>
|
||||
|
||||
<a href="/carp_status.php" class="navlnk">CARP (failover)</a><br>
|
||||
<?php echo return_ext_menu("Services"); ?>
|
||||
<strong>VPN</strong><br>
|
||||
<a href="/vpn_ipsec.php" class="navlnk">IPsec</a><br>
|
||||
|
||||
@ -105,6 +105,7 @@ include("head.inc");
|
||||
$tab_array[1] = array("Mobile clients", false, "vpn_ipsec_mobile.php");
|
||||
$tab_array[2] = array("Pre-shared keys", false, "vpn_ipsec_keys.php");
|
||||
$tab_array[3] = array("CAs", false, "vpn_ipsec_ca.php");
|
||||
$tab_array[4] = array("Failover IPSEC", false, "/pkg_edit.php?xml=sasyncd.xml&id=0");
|
||||
display_top_tabs($tab_array);
|
||||
?>
|
||||
</td></tr>
|
||||
|
||||
@ -69,6 +69,7 @@ include("head.inc");
|
||||
$tab_array[1] = array("Mobile clients", false, "vpn_ipsec_mobile.php");
|
||||
$tab_array[2] = array("Pre-shared keys", false, "vpn_ipsec_keys.php");
|
||||
$tab_array[3] = array("CAs", true, "vpn_ipsec_ca.php");
|
||||
$tab_array[4] = array("Failover IPSEC", false, "/pkg_edit.php?xml=sasyncd.xml&id=0");
|
||||
display_top_tabs($tab_array);
|
||||
?>
|
||||
</td></tr>
|
||||
|
||||
@ -68,6 +68,7 @@ include("head.inc");
|
||||
$tab_array[1] = array("Mobile clients", false, "vpn_ipsec_mobile.php");
|
||||
$tab_array[2] = array("Pre-shared keys", true, "vpn_ipsec_keys.php");
|
||||
$tab_array[3] = array("CAs", false, "vpn_ipsec_ca.php");
|
||||
$tab_array[4] = array("Failover IPSEC", false, "/pkg_edit.php?xml=sasyncd.xml&id=0");
|
||||
display_top_tabs($tab_array);
|
||||
?>
|
||||
</td></tr>
|
||||
|
||||
@ -199,6 +199,7 @@ function methodsel_change() {
|
||||
$tab_array[1] = array("Mobile clients", true, "vpn_ipsec_mobile.php");
|
||||
$tab_array[2] = array("Pre-shared keys", false, "vpn_ipsec_keys.php");
|
||||
$tab_array[3] = array("CAs", false, "vpn_ipsec_ca.php");
|
||||
$tab_array[4] = array("Failover IPSEC", false, "/pkg_edit.php?xml=sasyncd.xml&id=0");
|
||||
display_top_tabs($tab_array);
|
||||
?>
|
||||
</td></tr>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user