]> git.proxmox.com Git - mirror_frr.git/blame - ospf6d/README
Fix by Vadim Suraev - [zebra 14710] #6.
[mirror_frr.git] / ospf6d / README
CommitLineData
718e3744 1
2 Zebra OSPF daemon for IPv6 network
3
4 2001/12/20
5
6Zebra OSPF6d is OSPF version 3 daemon which is specified by
7"OSPF for IPv6" (RFC 2740).
8
9*** NOTE ***
10 Zebra ospf6d is in development yet. It may lack some functionalities,
11 and may have some bugs. Use the latest version from the anoncvs
12 repository (http://www.zebra.org/cvs.html) !
13
14This file README is like memo yet, so please feel free to ask
15<yasu@sfc.wide.ad.jp> by E-mail. Patches will be appriciated.
16
17ospf6d's vty port was default to 2606/tcp.
18Use commands below.
19
20VIEW NODE:
21 show ipv6 ospf6
22 To see Router-ID, uptime of ospf6d, some statistics.
23
24 show ipv6 ospf6 database ...
25 This command shows LSA database. You can specify
26 LS-type/LS-ID/Advertising-Router of LSAs. '*' is recognized.
27
28 show ipv6 ospf6 interface ...
29 To see the status of the OSPF interface, and the configuration
30 like interface costs.
31
32 show ipv6 ospf6 neighbor ...
33 Shows state of neighbors and choosed (Backup) DR on the I/F.
34
35 show ipv6 ospf6 route (X::X)
36 This command shows internal routing table of the ospf6d.
37 Routes not calculated by OSPFv3 (like connected routes)
38 are not shown. If Address is specified (X::X), shows the route
39 that the address matches.
40
41 show ipv6 ospf6 route redistribute (X::X)
42 Shows the routes advertised as AS-External routes by the router
43 itself. If Address is specified (X::X), shows the route
44 that the address matches.
45
46CONFIG NODE:
47 interface NAME
48 To enter INTERFACE NODE
49
50 router ospf6 ...
51 To enter OSPF6 NODE
52
53INTERFACE NODE:
54 ipv6 ospf6 cost COST
55 Sets the interface's output cost. default 1
56
57 ipv6 ospf6 hello-interval HELLOINTERVAL
58 Sets the interface's Hello Interval. default 10
59
60 ipv6 ospf6 dead-interval DEADINTERVAL
61 Sets the interface's Router Dead Interval. default 40
62
63 ipv6 ospf6 retransmit-interval RETRANSMITINTERVAL
64 Sets the interface's Rxmt Interval. default 5
65
66 ipv6 ospf6 priority PRIORITY
67 Sets the interface's Router Priority. default 1
68
69 ipv6 ospf6 transmit-delay TRANSMITDELAY
70 Sets the interface's Inf-Trans-Delay. default 1
71
72OSPF6 NODE:
73 router-id A.B.C.D
74 Sets the router's Router-ID
75
76 interface NAME area AREA
77 Binds interface to specified Area, and start
78 sending OSPFv3 packets.
79
80Sample configuration is in ospf6d.conf.sample.
81
82--
83Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
84Kunihiro Ishiguro <kunihiro@zebra.org>
85