ospfd: Tighten up the connected check for redistribution
[jleu-quagga.git] / ospf6d / README
blob883486fa05f2c98cc3dc68a27fcbc32d541c3f26
2                   Zebra OSPF daemon for IPv6 network
4                              2003/08/18
6 README for newer code is not yet. General usage should remain
7 the same. For further usage, see command helps by typing '?'
8 in vty, and then imagin ! ;p) Previous README contents follows.
10                   Zebra OSPF daemon for IPv6 network
12                              2001/12/20
14 Zebra OSPF6d is OSPF version 3 daemon which is specified by
15 "OSPF for IPv6" (RFC 2740).
17 *** NOTE ***
18   Zebra ospf6d is in development yet. It may lack some functionalities,
19   and may have some bugs. Use the latest version from the anoncvs
20   repository (http://www.zebra.org/cvs.html) !
22 This file README is like memo yet, so please feel free to ask
23 <yasu@sfc.wide.ad.jp> by E-mail. Patches will be appriciated.
25 ospf6d's vty port was default to 2606/tcp.
26 Use commands below.
28 VIEW NODE:
29   show ipv6 ospf6
30     To see Router-ID, uptime of ospf6d, some statistics.
32   show ipv6 ospf6 database ...
33     This command shows LSA database. You can specify
34     LS-type/LS-ID/Advertising-Router of LSAs. '*' is recognized.
36   show ipv6 ospf6 interface ...
37     To see the status of the OSPF interface, and the configuration
38     like interface costs.
40   show ipv6 ospf6 neighbor ...
41     Shows state of neighbors and choosed (Backup) DR on the I/F.
43   show ipv6 ospf6 route (X::X)
44     This command shows internal routing table of the ospf6d.
45     Routes not calculated by OSPFv3 (like connected routes)
46     are not shown. If Address is specified (X::X), shows the route
47     that the address matches.
49   show ipv6 ospf6 route redistribute (X::X)
50     Shows the routes advertised as AS-External routes by the router
51     itself. If Address is specified (X::X), shows the route
52     that the address matches.
54 CONFIG NODE:
55   interface NAME
56     To enter INTERFACE NODE
58   router ospf6 ...
59     To enter OSPF6 NODE
61 INTERFACE NODE:
62   ipv6 ospf6 cost COST
63     Sets the interface's output cost. default 1
65   ipv6 ospf6 hello-interval HELLOINTERVAL
66     Sets the interface's Hello Interval. default 10
68   ipv6 ospf6 dead-interval DEADINTERVAL
69     Sets the interface's Router Dead Interval. default 40
71   ipv6 ospf6 retransmit-interval RETRANSMITINTERVAL
72     Sets the interface's Rxmt Interval. default 5
74   ipv6 ospf6 priority PRIORITY
75     Sets the interface's Router Priority. default 1
77   ipv6 ospf6 transmit-delay TRANSMITDELAY
78     Sets the interface's Inf-Trans-Delay. default 1
80 OSPF6 NODE:
81   router-id A.B.C.D
82     Sets the router's Router-ID
84   interface NAME area AREA
85     Binds interface to specified Area, and start
86     sending OSPFv3 packets.
88 Sample configuration is in ospf6d.conf.sample.
91 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
92 Kunihiro Ishiguro <kunihiro@zebra.org>