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. --- docs/configuration.md | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'docs') diff --git a/docs/configuration.md b/docs/configuration.md index 2483713..25f99b6 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -145,6 +145,17 @@ After that you need to set the authentication information for the looking glass to be able to log into the router. For this you select a type of authentication and then supply the needed information. +```php +$config['routers']['router1']['disable_ipv6'] = false; +``` +If set to true, disable the use of IPv6 for the router. + +```php +$config['routers']['router1']['disable_ipv4'] = false; +``` +If set to true, disable the use of IPv4 for the router. + + #### Telnet ```php @@ -220,16 +231,6 @@ $config['misc']['allow_reserved_ip'] = true; If set to true, allows reserved the use of IPv4 addresses (0.0.0.0/8, 169.254.0.0/16, 192.0.2.0/24 and 224.0.0.0/4) as parameters. -```php -$config['misc']['disable_ipv6'] = false; -``` -If set to true, disable the use of IPv6. - -```php -$config['misc']['disable_ipv4'] = false; -``` -If set to true, disable the use of IPv4. - ### Tools The tools that are used by this software are **ping** and **traceroute** for -- cgit v1.2.3