blob: 6667221cf787a72cfbf9bd3f429a2802e848f920 [file] [log] [blame]
paul76b89b42004-11-06 17:13:09 +00001@node OSPFv3
paul718e3742002-12-13 20:15:29 +00002@chapter OSPFv3
3
4@command{ospf6d} is a daemon support OSPF version 3 for IPv6 network.
5OSPF for IPv6 is described in RFC2740.
6
7@menu
8* OSPF6 router::
9* OSPF6 area::
10* OSPF6 interface::
11* Redistribute routes to OSPF6::
12* Showing OSPF6 information::
paulaa5943f2005-11-04 21:53:59 +000013* OSPF6 Configuration Examples::
paul718e3742002-12-13 20:15:29 +000014@end menu
15
paul76b89b42004-11-06 17:13:09 +000016@node OSPF6 router
paul718e3742002-12-13 20:15:29 +000017@section OSPF6 router
18
19@deffn {Command} {router ospf6} {}
20@end deffn
21
22@deffn {OSPF6 Command} {router-id @var{a.b.c.d}} {}
23Set router's Router-ID.
24@end deffn
25
26@deffn {OSPF6 Command} {interface @var{ifname} area @var{area}} {}
27Bind interface to specified area, and start sending OSPF packets. @var{area} can
28be specified as 0.
29@end deffn
30
paul76b89b42004-11-06 17:13:09 +000031@node OSPF6 area
paul718e3742002-12-13 20:15:29 +000032@section OSPF6 area
33
34Area support for OSPFv3 is not yet implemented.
35
paul76b89b42004-11-06 17:13:09 +000036@node OSPF6 interface
paul718e3742002-12-13 20:15:29 +000037@section OSPF6 interface
38
39@deffn {Interface Command} {ipv6 ospf6 cost COST} {}
40Sets interface's output cost. Default value is 1.
41@end deffn
42
43@deffn {Interface Command} {ipv6 ospf6 hello-interval HELLOINTERVAL} {}
44Sets interface's Hello Interval. Default 40
45@end deffn
46
47@deffn {Interface Command} {ipv6 ospf6 dead-interval DEADINTERVAL} {}
48Sets interface's Router Dead Interval. Default value is 40.
49@end deffn
50
51@deffn {Interface Command} {ipv6 ospf6 retransmit-interval RETRANSMITINTERVAL} {}
52Sets interface's Rxmt Interval. Default value is 5.
53@end deffn
54
55@deffn {Interface Command} {ipv6 ospf6 priority PRIORITY} {}
56Sets interface's Router Priority. Default value is 1.
57@end deffn
58
59@deffn {Interface Command} {ipv6 ospf6 transmit-delay TRANSMITDELAY} {}
60Sets interface's Inf-Trans-Delay. Default value is 1.
61@end deffn
62
paul76b89b42004-11-06 17:13:09 +000063@node Redistribute routes to OSPF6
paul718e3742002-12-13 20:15:29 +000064@section Redistribute routes to OSPF6
65
66@deffn {OSPF6 Command} {redistribute static} {}
67@deffnx {OSPF6 Command} {redistribute connected} {}
68@deffnx {OSPF6 Command} {redistribute ripng} {}
69@end deffn
70
paul76b89b42004-11-06 17:13:09 +000071@node Showing OSPF6 information
paul718e3742002-12-13 20:15:29 +000072@section Showing OSPF6 information
73
74@deffn {Command} {show ipv6 ospf6 [INSTANCE_ID]} {}
75INSTANCE_ID is an optional OSPF instance ID. To see router ID and OSPF
76instance ID, simply type "show ipv6 ospf6 <cr>".
77@end deffn
78
79@deffn {Command} {show ipv6 ospf6 database} {}
80This command shows LSA database summary. You can specify the type of LSA.
81@end deffn
82
83@deffn {Command} {show ipv6 ospf6 interface} {}
84To see OSPF interface configuration like costs.
85@end deffn
86
87@deffn {Command} {show ipv6 ospf6 neighbor} {}
88Shows state and chosen (Backup) DR of neighbor.
89@end deffn
90
91@deffn {Command} {show ipv6 ospf6 request-list A.B.C.D} {}
92Shows requestlist of neighbor.
93@end deffn
94
95@deffn {Command} {show ipv6 route ospf6} {}
96This command shows internal routing table.
97@end deffn
paulaa5943f2005-11-04 21:53:59 +000098
99@node OSPF6 Configuration Examples
100@section OSPF6 Configuration Examples
101
102Example of ospf6d configured on one interface and area:
103
104@example
105interface eth0
106 ipv6 ospf6 instance-id 0
107!
108router 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
112!
113@end example