From 931788ad45b4f1114e97e6ac2869ab84efa767e2 Mon Sep 17 00:00:00 2001 From: Guillaume Mazoyer Date: Mon, 13 Jun 2016 11:23:09 +0200 Subject: Per router options to disable/enable IP versions. Remove the global options to disable/enable IPv6 or IPv4. These options can now be used on the router configuration level, which seems more appropriate. --- routers/quagga.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'routers/quagga.php') diff --git a/routers/quagga.php b/routers/quagga.php index 01d4387..d451e94 100644 --- a/routers/quagga.php +++ b/routers/quagga.php @@ -119,10 +119,10 @@ final class Quagga extends Router { case 'as-path-regex': if (match_aspath_regex($parameter)) { - if (!$this->global_config['misc']['disable_ipv6']) { + if (!$this->config['disable_ipv6']) { $commands[] = $vtysh.'show ipv6 bgp regexp '.$parameter.'"'; } - if (!$this->global_config['misc']['disable_ipv4']) { + if (!$this->config['disable_ipv4']) { $commands[] = $vtysh.'show ip bgp regexp '.$parameter.'"'; } } else { @@ -132,10 +132,10 @@ final class Quagga extends Router { case 'as': if (match_as($parameter)) { - if (!$this->global_config['misc']['disable_ipv6']) { + if (!$this->config['disable_ipv6']) { $commands[] = $vtysh.'show ipv6 bgp regexp ^'.$parameter.'_'.'"'; } - if (!$this->global_config['misc']['disable_ipv4']) { + if (!$this->config['disable_ipv4']) { $commands[] = $vtysh.'show ip bgp regexp ^'.$parameter.'_'.'"'; } } else { -- cgit v1.2.3