ospf6d: remove dead code
[jleu-quagga.git] / doc / ospf6d.texi
blob6667221cf787a72cfbf9bd3f429a2802e848f920
1 @node OSPFv3
2 @chapter OSPFv3
4 @command{ospf6d} is a daemon support OSPF version 3 for IPv6 network.
5 OSPF for IPv6 is described in RFC2740.
7 @menu
8 * OSPF6 router::                
9 * OSPF6 area::                  
10 * OSPF6 interface::             
11 * Redistribute routes to OSPF6::  
12 * Showing OSPF6 information::   
13 * OSPF6 Configuration Examples::
14 @end menu
16 @node OSPF6 router
17 @section OSPF6 router
19 @deffn {Command} {router ospf6} {}
20 @end deffn
22 @deffn {OSPF6 Command} {router-id @var{a.b.c.d}} {}
23 Set router's Router-ID.
24 @end deffn
26 @deffn {OSPF6 Command} {interface @var{ifname} area @var{area}} {}
27 Bind interface to specified area, and start sending OSPF packets.  @var{area} can
28 be specified as 0.
29 @end deffn
31 @node OSPF6 area
32 @section OSPF6 area
34 Area support for OSPFv3 is not yet implemented.
36 @node OSPF6 interface
37 @section OSPF6 interface
39 @deffn {Interface Command} {ipv6 ospf6 cost COST} {}
40 Sets interface's output cost.  Default value is 1.
41 @end deffn
43 @deffn {Interface Command} {ipv6 ospf6 hello-interval HELLOINTERVAL} {}
44 Sets interface's Hello Interval.  Default 40
45 @end deffn
47 @deffn {Interface Command} {ipv6 ospf6 dead-interval DEADINTERVAL} {}
48 Sets interface's Router Dead Interval.  Default value is 40.
49 @end deffn
51 @deffn {Interface Command} {ipv6 ospf6 retransmit-interval RETRANSMITINTERVAL} {}
52 Sets interface's Rxmt Interval.  Default value is 5.
53 @end deffn
55 @deffn {Interface Command} {ipv6 ospf6 priority PRIORITY} {}
56 Sets interface's Router Priority.  Default value is 1.
57 @end deffn
59 @deffn {Interface Command} {ipv6 ospf6 transmit-delay TRANSMITDELAY} {}
60 Sets interface's Inf-Trans-Delay.  Default value is 1.
61 @end deffn
63 @node Redistribute routes to OSPF6
64 @section Redistribute routes to OSPF6
66 @deffn {OSPF6 Command} {redistribute static} {}
67 @deffnx {OSPF6 Command} {redistribute connected} {}
68 @deffnx {OSPF6 Command} {redistribute ripng} {}
69 @end deffn
71 @node Showing OSPF6 information
72 @section Showing OSPF6 information
74 @deffn {Command} {show ipv6 ospf6 [INSTANCE_ID]} {}
75 INSTANCE_ID is an optional OSPF instance ID. To see router ID and OSPF
76 instance ID, simply type "show ipv6 ospf6 <cr>".
77 @end deffn
79 @deffn {Command} {show ipv6 ospf6 database} {}
80 This command shows LSA database summary.  You can specify the type of LSA.
81 @end deffn
83 @deffn {Command} {show ipv6 ospf6 interface} {}
84 To see OSPF interface configuration like costs.
85 @end deffn
87 @deffn {Command} {show ipv6 ospf6 neighbor} {}
88 Shows state and chosen (Backup) DR of neighbor.
89 @end deffn
91 @deffn {Command} {show ipv6 ospf6 request-list A.B.C.D} {}
92 Shows requestlist of neighbor.
93 @end deffn
95 @deffn {Command} {show ipv6 route ospf6} {}
96 This command shows internal routing table.
97 @end deffn
99 @node OSPF6 Configuration Examples
100 @section OSPF6 Configuration Examples
102 Example of ospf6d configured on one interface and area:
104 @example
105 interface eth0
106  ipv6 ospf6 instance-id 0
108 router ospf6
109  router-id 212.17.55.53
110  area 0.0.0.0 range 2001:770:105:2::/64
111  interface eth0 area 0.0.0.0
113 @end example