diff options
-rw-r--r-- | routers/bird.php | 4 | ||||
-rw-r--r-- | routers/cisco.php | 4 | ||||
-rw-r--r-- | routers/juniper.php | 4 | ||||
-rw-r--r-- | routers/quagga.php | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/routers/bird.php b/routers/bird.php index 3556902..b964367 100644 --- a/routers/bird.php +++ b/routers/bird.php @@ -31,9 +31,9 @@ final class Bird extends Router { switch ($command) { case 'bgp': - if (match_ipv4($parameters), false) { + if (match_ipv4($parameters, false)) { $commands[] = $birdc.' \'show route for '.$parameters.'\''; - } else if (match_ipv6($parameters), false) { + } else if (match_ipv6($parameters, false)) { $commands[] = $birdc6.' \'show route for '.$parameters.'\''; } else { throw new Exception('The parameter is not an IPv4/IPv6 address.'); diff --git a/routers/cisco.php b/routers/cisco.php index 44fc7ee..fa010e1 100644 --- a/routers/cisco.php +++ b/routers/cisco.php @@ -28,9 +28,9 @@ final class Cisco extends Router { switch ($command) { case 'bgp': - if (match_ipv4($parameters), false) { + if (match_ipv4($parameters, false)) { $commands[] = 'show bgp ipv4 unicast '.$parameters; - } else if (match_ipv6($parameters), false) { + } else if (match_ipv6($parameters, false)) { $commands[] = 'show bgp ipv6 unicast '.$parameters; } else { throw new Exception('The parameter is not an IPv4/IPv6 address.'); 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 { diff --git a/routers/quagga.php b/routers/quagga.php index d31e62b..c905a5e 100644 --- a/routers/quagga.php +++ b/routers/quagga.php @@ -30,9 +30,9 @@ final class Quagga extends Router { switch ($command) { case 'bgp': - if (match_ipv4($parameters), false) { + if (match_ipv4($parameters, false)) { $commands[] = $vtysh.'show bgp ipv4 unicast '.$parameters.'"'; - } else if (match_ipv6($parameters), false) { + } else if (match_ipv6($parameters, false)) { $commands[] = $vtysh.'show bgp ipv6 unicast '.$parameters.'"'; } else { throw new Exception('The parameter is not an IPv4/IPv6 address.'); |