diff options
author | Guillaume Mazoyer <gmazoyer@gravitons.in> | 2016-06-13 11:23:09 +0200 |
---|---|---|
committer | Guillaume Mazoyer <gmazoyer@gravitons.in> | 2016-06-13 11:23:09 +0200 |
commit | 931788ad45b4f1114e97e6ac2869ab84efa767e2 (patch) | |
tree | 6d93fee8a118e67843222278e0cbe95494d8b74d /docs/configuration.md | |
parent | 669fb2ebd03ac5e9b0806acb1c200e71e69b3d47 (diff) |
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.
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 |