diff options
author | Guillaume Mazoyer <respawneral@gmail.com> | 2014-12-13 13:33:49 +0100 |
---|---|---|
committer | Guillaume Mazoyer <respawneral@gmail.com> | 2014-12-13 13:33:49 +0100 |
commit | 35a4e5cf48ba418fd9bce4b023a1f897823aafb8 (patch) | |
tree | 3d92f44cb985c350deb17940dfd343e5157faa9c /routers/quagga.php | |
parent | 7ac5011098f3c717f14c8059754a9b654798db85 (diff) |
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.
Diffstat (limited to 'routers/quagga.php')
-rw-r--r-- | routers/quagga.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/routers/quagga.php b/routers/quagga.php index f78bdec..16f5d9c 100644 --- a/routers/quagga.php +++ b/routers/quagga.php @@ -36,9 +36,9 @@ final class Quagga extends Router { } if (match_ipv4($destination)) { - $ping = 'ping -A -c 10 '.$destination; + $ping = 'ping -A -c 10 '.(isset($fqdn) ? $fqdn : $destination); } else if (match_ipv6($destination)) { - $ping = 'ping6 -A -c 10 '.$destination; + $ping = 'ping6 -A -c 10 '.(isset($fqdn) ? $fqdn : $destination); } else { throw new Exception('The parameter does not resolve to an IPv4/IPv6 address.'); } @@ -69,9 +69,11 @@ final class Quagga extends Router { } if (match_ipv4($destination)) { - $traceroute = 'traceroute -4 -A -q1 -N32 -w1 -m15 '.$fqdn; + $traceroute = 'traceroute -4 -A -q1 -N32 -w1 -m15 '. + (isset($fqdn) ? $fqdn : $destination); } else if (match_ipv6($destination)) { - $traceroute = 'traceroute -6 -A -q1 -N32 -w1 -m15 '.$fqdn; + $traceroute = 'traceroute -6 -A -q1 -N32 -w1 -m15 '. + (isset($fqdn) ? $fqdn : $destination); } else { throw new Exception('The parameter does not resolve to an IPv4/IPv6 address.'); } |