diff options
author | Romain Boissat rboissat <rboissat@lv0.in> | 2014-08-05 10:55:02 +0200 |
---|---|---|
committer | Romain Boissat rboissat <rboissat@lv0.in> | 2014-08-05 10:55:02 +0200 |
commit | c264b14b390d78c2146cb500e06683f504f8aef1 (patch) | |
tree | 3c280bf8d22d618dde1122915a72f2b0b41ab86b /routers/bird.php | |
parent | 592b22a06433ab3aa66f39f5c462af074ed6c992 (diff) | |
parent | acce675f40b52560881677ace989902a28ba4c23 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'routers/bird.php')
-rw-r--r-- | routers/bird.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/routers/bird.php b/routers/bird.php index 9b0923f..b964367 100644 --- a/routers/bird.php +++ b/routers/bird.php @@ -31,9 +31,9 @@ final class Bird extends Router { switch ($command) { case 'bgp': - if (match_ipv4($parameters)) { + if (match_ipv4($parameters, false)) { $commands[] = $birdc.' \'show route for '.$parameters.'\''; - } else if (match_ipv6($parameters)) { + } else if (match_ipv6($parameters, false)) { $commands[] = $birdc6.' \'show route for '.$parameters.'\''; } else { throw new Exception('The parameter is not an IPv4/IPv6 address.'); |