diff options
author | Guillaume Mazoyer <gmazoyer@gravitons.in> | 2016-06-12 23:21:48 +0200 |
---|---|---|
committer | Guillaume Mazoyer <gmazoyer@gravitons.in> | 2016-06-12 23:21:48 +0200 |
commit | 28bf462793fc9c15e70b73d3eb2223f6328abb84 (patch) | |
tree | b6fc16b5b7a94e48041cb941a6cb2934d2c5e0b2 /routers/quagga.php | |
parent | 7bca7a70b0bf840fbd821ef7e18ed86d7cf3f144 (diff) |
Add new configuration options to enable/disable IPv6 or IPv4.
When disabling IPv6 or IPv4, the looking glass will not try to use both
IP protocol versions when looking for an AS routes or when pinging or
tracerouting.
If an IP address of a disabling IP version is used, the user will have an
error in return of its command. This error will tell him that the IP version
he is trying to use is disabled.
Please note that when trying to ping or traceroute a hostname from a Cisco or
a Juniper device, this looking glass will not prevent the device to use a
disabled IP version when executing its command.
This commit also contains some small changes with HTML tags.
Diffstat (limited to 'routers/quagga.php')
-rw-r--r-- | routers/quagga.php | 40 |
1 files changed, 28 insertions, 12 deletions
diff --git a/routers/quagga.php b/routers/quagga.php index 55f423f..bc91cdf 100644 --- a/routers/quagga.php +++ b/routers/quagga.php @@ -2,7 +2,7 @@ /* * Looking Glass - An easy to deploy Looking Glass - * Copyright (C) 2014-2015 Guillaume Mazoyer <gmazoyer@gravitons.in> + * Copyright (C) 2014-2016 Guillaume Mazoyer <gmazoyer@gravitons.in> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -31,7 +31,7 @@ final class Quagga extends Router { $destination = hostname_to_ip_address($hostname); if (!$destination) { - throw new Exception('No AAAA or A record found for '.$hostname); + throw new Exception('No record found for '.$hostname); } } @@ -42,7 +42,7 @@ final class Quagga extends Router { $ping = 'ping '.$this->global_config['tools']['ping_options'].' '. (isset($hostname) ? $hostname : $destination); } else { - throw new Exception('The parameter does not resolve to an IPv6/IPv4 address.'); + throw new Exception('The parameter does not resolve to an IP address.'); } if (($ping != null) && $this->has_source_interface_id()) { @@ -68,7 +68,7 @@ final class Quagga extends Router { $destination = hostname_to_ip_address($hostname); if (!$destination) { - throw new Exception('No AAAA or A record found for '.$hostname); + throw new Exception('No record found for '.$hostname); } } @@ -81,7 +81,7 @@ final class Quagga extends Router { $this->global_config['tools']['traceroute_options'].' '. (isset($hostname) ? $hostname : $destination); } else { - throw new Exception('The parameter does not resolve to an IPv6/IPv4 address.'); + throw new Exception('The parameter does not resolve to an IP address.'); } if (($traceroute != null) && $this->has_source_interface_id()) { @@ -109,18 +109,30 @@ final class Quagga extends Router { switch ($command) { case 'bgp': if (match_ipv6($parameter, false)) { - $commands[] = $vtysh.'show bgp ipv6 unicast '.$parameter.'"'; + if ($this->global_config['misc']['disable_ipv6']) { + throw new Exception('IPv6 is disabled.'); + } else { + $commands[] = $vtysh.'show bgp ipv6 unicast '.$parameter.'"'; + } } else if (match_ipv4($parameter, false)) { - $commands[] = $vtysh.'show bgp ipv4 unicast '.$parameter.'"'; + if ($this->global_config['misc']['disable_ipv4']) { + throw new Exception('IPv4 is disabled.'); + } else { + $commands[] = $vtysh.'show bgp ipv4 unicast '.$parameter.'"'; + } } else { - throw new Exception('The parameter is not an IPv4/IPv6 address.'); + throw new Exception('The parameter is not an IP address.'); } break; case 'as-path-regex': if (match_aspath_regex($parameter)) { - $commands[] = $vtysh.'show ipv6 bgp regexp '.$parameter.'"'; - $commands[] = $vtysh.'show ip bgp regexp '.$parameter.'"'; + if (!$this->global_config['misc']['disable_ipv6']) { + $commands[] = $vtysh.'show ipv6 bgp regexp '.$parameter.'"'; + } + if (!$this->global_config['misc']['disable_ipv4']) { + $commands[] = $vtysh.'show ip bgp regexp '.$parameter.'"'; + } } else { throw new Exception('The parameter is not an AS-Path regular expression.'); } @@ -128,8 +140,12 @@ final class Quagga extends Router { case 'as': if (match_as($parameter)) { - $commands[] = $vtysh.'show ipv6 bgp regexp ^'.$parameter.'_'.'"'; - $commands[] = $vtysh.'show ip bgp regexp ^'.$parameter.'_'.'"'; + if (!$this->global_config['misc']['disable_ipv6']) { + $commands[] = $vtysh.'show ipv6 bgp regexp ^'.$parameter.'_'.'"'; + } + if (!$this->global_config['misc']['disable_ipv4']) { + $commands[] = $vtysh.'show ip bgp regexp ^'.$parameter.'_'.'"'; + } } else { throw new Exception('The parameter is not an AS number.'); } |