diff --git a/html/pages/device/routing/ipsec_tunnels.inc.php b/html/pages/device/routing/ipsec_tunnels.inc.php index 294564e045..2cde88559c 100644 --- a/html/pages/device/routing/ipsec_tunnels.inc.php +++ b/html/pages/device/routing/ipsec_tunnels.inc.php @@ -1,5 +1,10 @@ 'device', + 'device' => $device['device_id'], + 'tab' => 'routing', + 'proto' => 'ipsec_tunnels'); + print_optionbar_start(); echo("IPSEC Tunnels » "); @@ -7,36 +12,41 @@ echo("IPSEC Tunnels » "); $menu_options = array('basic' => 'Basic', ); +if(!isset($vars['view'])) { $vars['view'] = "basic"; } + +echo("VRFs » "); + +$menu_options = array('basic' => 'Basic', +# 'detail' => 'Detail', + ); + if (!$_GET['opta']) { $_GET['opta'] = "basic"; } $sep = ""; foreach ($menu_options as $option => $text) { - if ($_GET['optd'] == $option) { echo(" "); } + if ($vars['view'] == $option) { echo(" "); } echo(" | "); } -unset($sep); - echo(' Graphs: '); -$graph_types = array("bits" => "Bits", - "pkts" => "Packets", - "errors" => "Errors"); +$graph_types = array("bits" => "Bits", + "pkts" => "Packets"); foreach ($graph_types as $type => $descr) { echo("$type_sep"); - if ($_GET['opte'] == $type) { echo(" "); } + if ($vars['graph'] == $type) { echo(" "); } $type_sep = " | "; } + print_optionbar_end(); echo("
" . $tunnel['local_addr'] . " » " . echo(" | " . $tunnel['tunnel_name'] . " | "); echo("" . $tunnel['tunnel_status'] . " | "); echo(""); - if ($_GET['optd'] == "graphs") + if (isset($vars['graph'])) { echo('
"); - $graph_type = "ipsectunnel_" . $_GET['opte']; + $graph_type = "ipsectunnel_" . $vars['graph']; -$graph_array['height'] = "100"; -$graph_array['width'] = "215"; -$graph_array['to'] = $config['time']['now']; -$graph_array['id'] = $tunnel['tunnel_id']; -$graph_array['type'] = $graph_type; + $graph_array['height'] = "100"; + $graph_array['width'] = "215"; + $graph_array['to'] = $config['time']['now']; + $graph_array['id'] = $tunnel['tunnel_id']; + $graph_array['type'] = $graph_type; -include("includes/print-graphrow.inc.php"); + include("includes/print-graphrow.inc.php"); - echo(" - | -