summaryrefslogtreecommitdiff
path: root/routers/juniper.php
diff options
context:
space:
mode:
authorGuillaume Mazoyer <respawneral@gmail.com>2014-08-05 01:52:02 +0200
committerGuillaume Mazoyer <respawneral@gmail.com>2014-08-05 01:52:02 +0200
commiteabf23d38491aed648bfa22df18230f2f49be1cd (patch)
treec3280474c0ad710b9cc8b2718a259f3449168c3c /routers/juniper.php
parentc3023fa66fe7846fbd008b26752570b4a3e979a5 (diff)
Add a way to validate strict IP address (no mask).
Diffstat (limited to 'routers/juniper.php')
-rw-r--r--routers/juniper.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/routers/juniper.php b/routers/juniper.php
index 32330e4..f0810eb 100644
--- a/routers/juniper.php
+++ b/routers/juniper.php
@@ -28,10 +28,10 @@ final class Juniper extends Router {
switch ($command) {
case 'bgp':
- if (match_ipv4($parameters)) {
+ if (match_ipv4($parameters), false) {
$commands[] = 'show route '.$parameters.
' protocol bgp table inet.0 active-path';
- } else if (match_ipv6($parameters)) {
+ } else if (match_ipv6($parameters), false) {
$commands[] = 'show route '.$parameters.
' protocol bgp table inet6.0 active-path';
} else {