diff options
author | Guillaume Mazoyer <respawneral@gmail.com> | 2014-06-20 15:41:15 +0200 |
---|---|---|
committer | Guillaume Mazoyer <respawneral@gmail.com> | 2014-06-20 15:41:15 +0200 |
commit | 9dcde5b501552b63314ca2b142ff2b849c4a023d (patch) | |
tree | 50d586c23b55ce66fe610704778be03460835f85 /config.php.example | |
parent | 8bab0d8735603683ea7ba18a2248257368ece16f (diff) |
Basic support for BIRD based routers.
Diffstat (limited to 'config.php.example')
-rw-r--r-- | config.php.example | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/config.php.example b/config.php.example index 0749398..bc123e3 100644 --- a/config.php.example +++ b/config.php.example @@ -61,4 +61,18 @@ $config['routers']['router2']['type'] = 'juniper'; // The router description to be displayed in the router list $config['routers']['router2']['desc'] = 'Example\'s Router 2'; +// Router based on BIRD +// The hostname or the IP address +$config['routers']['router3']['host'] = 'r3.example.net'; +// The user to use to connect to the router +$config['routers']['router3']['user'] = 'birduser'; +// The password of the given user +$config['routers']['router3']['pass'] = 'birduserpassword'; +// The authentication mecanism to use (can be ssh-password or ssh-key) +$config['routers']['router3']['auth'] = 'ssh-password'; +// The router type (can only be bird) +$config['routers']['router3']['type'] = 'bird'; +// The router description to be displayed in the router list +$config['routers']['router3']['desc'] = 'Example\'s Router 3'; + // End of config.php |