summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Mazoyer <respawneral@gmail.com>2014-12-13 13:10:32 +0100
committerGuillaume Mazoyer <respawneral@gmail.com>2014-12-13 13:10:32 +0100
commit7ac5011098f3c717f14c8059754a9b654798db85 (patch)
treeebca7e4e462c69d800ff4a6408211bd3f82974d7
parent4c5b4b628186d8acea0a814423661e1d8cebc695 (diff)
Not sure why I removed 'ipv6'.
-rw-r--r--routers/cisco.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/cisco.php b/routers/cisco.php
index cc5b05d..26fdde5 100644
--- a/routers/cisco.php
+++ b/routers/cisco.php
@@ -57,7 +57,7 @@ final class Cisco extends Router {
if (match_ipv4($destination)) {
$traceroute = 'traceroute ip '.$fqdn;
} else if (match_ipv6($destination)) {
- $traceroute = 'traceroute '.$fqdn;
+ $traceroute = 'traceroute ipv6 '.$fqdn;
} else {
throw new Exception('The parameter does not resolve to an IPv4/IPv6 address.');
}