diff options
author | remi <remi@cvs.openbsd.org> | 2021-03-27 10:23:26 +0000 |
---|---|---|
committer | remi <remi@cvs.openbsd.org> | 2021-03-27 10:23:26 +0000 |
commit | 351fb80b4486494e59376f0a7af792d37ea0cdcb (patch) | |
tree | 2563763eb58a860fdcdbd2a55cac0c5497096a85 /etc/examples | |
parent | e67e797073b1c6e12cda912947312b056266cea3 (diff) |
The ospf6d manpage states that the daemon laks support for multi area
configurations. Fix the example config to only use one area instead of
two.
Issue brought up and OK danj@
claudio@ doesn't mind
Diffstat (limited to 'etc/examples')
-rw-r--r-- | etc/examples/ospf6d.conf | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/etc/examples/ospf6d.conf b/etc/examples/ospf6d.conf index c7248e12847..940bbd8efef 100644 --- a/etc/examples/ospf6d.conf +++ b/etc/examples/ospf6d.conf @@ -1,4 +1,4 @@ -# $OpenBSD: ospf6d.conf,v 1.1 2014/07/11 16:36:35 deraadt Exp $ +# $OpenBSD: ospf6d.conf,v 1.2 2021/03/27 10:23:25 remi Exp $ # global configuration # router-id 10.0.0.1 @@ -20,14 +20,9 @@ area 0.0.0.5 { interface em0 { router-dead-time 20 + router-priority 5 } interface em1 { } } - -area 0.0.0.7 { - interface em2 { - router-priority 5 - } -} |