summaryrefslogtreecommitdiff
path: root/routers/quagga.php
diff options
context:
space:
mode:
authorRomain Boissat rboissat <rboissat@lv0.in>2014-08-05 10:55:02 +0200
committerRomain Boissat rboissat <rboissat@lv0.in>2014-08-05 10:55:02 +0200
commitc264b14b390d78c2146cb500e06683f504f8aef1 (patch)
tree3c280bf8d22d618dde1122915a72f2b0b41ab86b /routers/quagga.php
parent592b22a06433ab3aa66f39f5c462af074ed6c992 (diff)
parentacce675f40b52560881677ace989902a28ba4c23 (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'routers/quagga.php')
-rw-r--r--routers/quagga.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/routers/quagga.php b/routers/quagga.php
index a9fe99b..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)) {
+ if (match_ipv4($parameters, false)) {
$commands[] = $vtysh.'show bgp ipv4 unicast '.$parameters.'"';
- } else if (match_ipv6($parameters)) {
+ } 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.');
@@ -85,4 +85,4 @@ final class Quagga extends Router {
}
}
-// End of cisco.php
+// End of quagga.php