From 35a4e5cf48ba418fd9bce4b023a1f897823aafb8 Mon Sep 17 00:00:00 2001 From: Guillaume Mazoyer Date: Sat, 13 Dec 2014 13:33:49 +0100 Subject: Option to hide commands. Set $config\['output'\]\['show_command'\] to true or false to show or hide the command in the output. Also fix ping/traceroute without FQDN on BIRD, Quagga and Cisco. --- routers/cisco.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'routers/cisco.php') diff --git a/routers/cisco.php b/routers/cisco.php index 26fdde5..4d94a62 100644 --- a/routers/cisco.php +++ b/routers/cisco.php @@ -55,9 +55,9 @@ final class Cisco extends Router { } if (match_ipv4($destination)) { - $traceroute = 'traceroute ip '.$fqdn; + $traceroute = 'traceroute ip '.(isset($fqdn) ? $fqdn : $destination); } else if (match_ipv6($destination)) { - $traceroute = 'traceroute ipv6 '.$fqdn; + $traceroute = 'traceroute ipv6 '.(isset($fqdn) ? $fqdn : $destination); } else { throw new Exception('The parameter does not resolve to an IPv4/IPv6 address.'); } -- cgit v1.2.3