diff options
author | Guillaume Mazoyer <respawneral@gmail.com> | 2014-09-03 11:19:56 +0200 |
---|---|---|
committer | Guillaume Mazoyer <respawneral@gmail.com> | 2014-09-03 11:19:56 +0200 |
commit | 0512ffb7f70f85223a71ffd539b74459793178af (patch) | |
tree | 9c97d86b9b3f4ba908f2f217c70a777dbb03b5a5 /routers/quagga.php | |
parent | d9fcd2d238eaf8ab61de5c8a1ef5ad6fbd5d1778 (diff) |
Add config to disallow the use of private and reserved IP ranges.
Diffstat (limited to 'routers/quagga.php')
-rw-r--r-- | routers/quagga.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/quagga.php b/routers/quagga.php index 642ff4e..2dc7dc2 100644 --- a/routers/quagga.php +++ b/routers/quagga.php @@ -44,7 +44,7 @@ final class Quagga extends Router { $commands[] = $vtysh.'show ip bgp regexp '.$parameters.'"'; $commands[] = $vtysh.'show ipv6 bgp regexp '.$parameters.'"'; } else { - throw new Exception('The parameter is not an AS-Path regular expression like ".*XXXX YYYY.*".'); + throw new Exception('The parameter is not an AS-Path regular expression.'); } break; |