summaryrefslogtreecommitdiff
path: root/routers/juniper.php
diff options
context:
space:
mode:
Diffstat (limited to 'routers/juniper.php')
-rw-r--r--routers/juniper.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/routers/juniper.php b/routers/juniper.php
index f0810eb..30d783b 100644
--- a/routers/juniper.php
+++ b/routers/juniper.php
@@ -28,10 +28,10 @@ final class Juniper extends Router {
switch ($command) {
case 'bgp':
- if (match_ipv4($parameters), false) {
+ if (match_ipv4($parameters, false)) {
$commands[] = 'show route '.$parameters.
' protocol bgp table inet.0 active-path';
- } else if (match_ipv6($parameters), false) {
+ } else if (match_ipv6($parameters, false)) {
$commands[] = 'show route '.$parameters.
' protocol bgp table inet6.0 active-path';
} else {