diff options
-rw-r--r-- | routers/juniper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/juniper.php b/routers/juniper.php index 56fd7a0..b5c3449 100644 --- a/routers/juniper.php +++ b/routers/juniper.php @@ -66,7 +66,7 @@ final class Juniper extends Router { if (match_ipv4($parameter, false)) { $commands[] = 'show route '.$parameter. ' protocol bgp table inet.0 active-path'; - } else if (match_ipv6($parameters, false)) { + } else if (match_ipv6($parameter, false)) { $commands[] = 'show route '.$parameter. ' protocol bgp table inet6.0 active-path'; } else { |