summaryrefslogtreecommitdiff
path: root/routers/cisco.php
diff options
context:
space:
mode:
authorRomain Boissat rboissat <rboissat@lv0.in>2014-08-04 23:52:45 +0200
committerRomain Boissat rboissat <rboissat@lv0.in>2014-08-04 23:52:45 +0200
commitd0510f1a3582b1cee78d7893d1d61b1dceb3f325 (patch)
treed5a3475c7d94cc349e67de3497762a4df22df1f3 /routers/cisco.php
parent2e6c301b4efd557ae876d40815f36fe9966bb2dc (diff)
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.');
}