diff options
Diffstat (limited to 'docs/configuration.md')
-rw-r--r-- | docs/configuration.md | 21 |
1 files changed, 11 insertions, 10 deletions
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 |