summaryrefslogtreecommitdiff
path: root/routers/cisco.php
diff options
context:
space:
mode:
authorGuillaume Mazoyer <respawneral@gmail.com>2014-08-05 01:55:30 +0200
committerGuillaume Mazoyer <respawneral@gmail.com>2014-08-05 01:55:30 +0200
commit2de01c4cea4fbb9a5278350788d37df836305874 (patch)
tree34d8d16e8d5e40a70a1da28638c03017d97dce27 /routers/cisco.php
parenteabf23d38491aed648bfa22df18230f2f49be1cd (diff)
I need some sleep :|
Diffstat (limited to 'routers/cisco.php')
-rw-r--r--routers/cisco.php4
1 files changed, 2 insertions, 2 deletions
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.');