diff options
author | Guillaume Mazoyer <respawneral@gmail.com> | 2014-08-05 01:52:02 +0200 |
---|---|---|
committer | Guillaume Mazoyer <respawneral@gmail.com> | 2014-08-05 01:52:02 +0200 |
commit | eabf23d38491aed648bfa22df18230f2f49be1cd (patch) | |
tree | c3280474c0ad710b9cc8b2718a259f3449168c3c /routers/quagga.php | |
parent | c3023fa66fe7846fbd008b26752570b4a3e979a5 (diff) |
Add a way to validate strict IP address (no mask).
Diffstat (limited to 'routers/quagga.php')
-rw-r--r-- | routers/quagga.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/routers/quagga.php b/routers/quagga.php index a9fe99b..d31e62b 100644 --- a/routers/quagga.php +++ b/routers/quagga.php @@ -30,9 +30,9 @@ final class Quagga extends Router { switch ($command) { case 'bgp': - if (match_ipv4($parameters)) { + if (match_ipv4($parameters), false) { $commands[] = $vtysh.'show bgp ipv4 unicast '.$parameters.'"'; - } else if (match_ipv6($parameters)) { + } else if (match_ipv6($parameters), false) { $commands[] = $vtysh.'show bgp ipv6 unicast '.$parameters.'"'; } else { throw new Exception('The parameter is not an IPv4/IPv6 address.'); @@ -85,4 +85,4 @@ final class Quagga extends Router { } } -// End of cisco.php +// End of quagga.php |