summaryrefslogtreecommitdiff
path: root/routers/cisco.php
diff options
context:
space:
mode:
authorGuillaume Mazoyer <gmazoyer@gravitons.in>2014-08-05 00:36:03 +0200
committerGuillaume Mazoyer <gmazoyer@gravitons.in>2014-08-05 00:36:03 +0200
commitb3141237d766978ac71d9c65c5986afecd2f8fad (patch)
treed5a3475c7d94cc349e67de3497762a4df22df1f3 /routers/cisco.php
parent2e6c301b4efd557ae876d40815f36fe9966bb2dc (diff)
parentd0510f1a3582b1cee78d7893d1d61b1dceb3f325 (diff)
Merge pull request #2 from rboissat/master
Adding Quagga support and fixing Cisco commands.
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 d1b65b2..bebec78 100644
--- a/routers/cisco.php
+++ b/routers/cisco.php
@@ -48,8 +48,8 @@ final class Cisco extends Router {
case 'as':
if (match_as($parameters)) {
- $commands[] = 'show bgp ipv4 unicast quote-regexp "^'.$parameters.'$"';
- $commands[] = 'show bgp ipv6 unicast quote-regexp "^'.$parameters.'$"';
+ $commands[] = 'show bgp ipv4 unicast quote-regexp "^'.$parameters.'_"';
+ $commands[] = 'show bgp ipv6 unicast quote-regexp "^'.$parameters.'_"';
} else {
throw new Exception('The parameter is not an AS number.');
}