From eabf23d38491aed648bfa22df18230f2f49be1cd Mon Sep 17 00:00:00 2001 From: Guillaume Mazoyer Date: Tue, 5 Aug 2014 01:52:02 +0200 Subject: Add a way to validate strict IP address (no mask). --- routers/juniper.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'routers/juniper.php') 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 { -- cgit v1.2.3