summaryrefslogtreecommitdiff
path: root/doc/ospf6d.texi
diff options
context:
space:
mode:
authorpaul <paul>2005-11-04 21:53:59 +0000
committerpaul <paul>2005-11-04 21:53:59 +0000
commitaa5943f771833113bab14bfd77dea8a9c770f61c (patch)
tree324620397ebfd4ee96e5fddfb5e69449151a516c /doc/ospf6d.texi
parenta3957e3838145e3ca624236712bcb6999a35d9b1 (diff)
2005-11-04 Paul Jakma <paul.jakma@sun.com>
* quagga.info: Update auto-built file * ospf6d.texi: Add example config * bgpd.texi: Add example configs. Couple of cleanups of format and macros. * routemap.texi: Add an explanation of how route-maps work. Document the call and exit-policy commands.
Diffstat (limited to 'doc/ospf6d.texi')
-rw-r--r--doc/ospf6d.texi17
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/ospf6d.texi b/doc/ospf6d.texi
index 5c5e60f3..6667221c 100644
--- a/doc/ospf6d.texi
+++ b/doc/ospf6d.texi
@@ -10,6 +10,7 @@ OSPF for IPv6 is described in RFC2740.
* OSPF6 interface::
* Redistribute routes to OSPF6::
* Showing OSPF6 information::
+* OSPF6 Configuration Examples::
@end menu
@node OSPF6 router
@@ -94,3 +95,19 @@ Shows requestlist of neighbor.
@deffn {Command} {show ipv6 route ospf6} {}
This command shows internal routing table.
@end deffn
+
+@node OSPF6 Configuration Examples
+@section OSPF6 Configuration Examples
+
+Example of ospf6d configured on one interface and area:
+
+@example
+interface eth0
+ ipv6 ospf6 instance-id 0
+!
+router ospf6
+ router-id 212.17.55.53
+ area 0.0.0.0 range 2001:770:105:2::/64
+ interface eth0 area 0.0.0.0
+!
+@end example