• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..22-Apr-201648

Makefile.amH A D27-Nov-20151 KiB

Makefile.inH A D27-Nov-201526.3 KiB

ospf6_abr.cH A D27-Nov-201527.8 KiB

ospf6_abr.hH A D27-Nov-20152.5 KiB

ospf6_area.cH A D27-Nov-201521.5 KiB

ospf6_area.hH A D27-Nov-20153.4 KiB

ospf6_asbr.cH A D27-Nov-201537 KiB

ospf6_asbr.hH A D27-Nov-20153.1 KiB

ospf6_flood.cH A D27-Nov-201530.8 KiB

ospf6_flood.hH A D27-Nov-20152.5 KiB

ospf6_interface.cH A D27-Nov-201551 KiB

ospf6_interface.hH A D27-Nov-20154.7 KiB

ospf6_intra.cH A D27-Nov-201555.5 KiB

ospf6_intra.hH A D27-Nov-20158.7 KiB

ospf6_lsa.cH A D27-Nov-201526.4 KiB

ospf6_lsa.hH A D27-Nov-201510 KiB

ospf6_lsdb.cH A D27-Nov-201513.9 KiB

ospf6_lsdb.hH A D27-Nov-20153.5 KiB

ospf6_main.cH A D27-Nov-20158 KiB

ospf6_message.cH A D27-Nov-201577.5 KiB

ospf6_message.hH A D27-Nov-20154.5 KiB

ospf6_neighbor.cH A D27-Nov-201529.1 KiB

ospf6_neighbor.hH A D27-Nov-20154.8 KiB

ospf6_network.cH A D27-Nov-20156.9 KiB

ospf6_network.hH A D27-Nov-20151.3 KiB

ospf6_proto.cH A D27-Nov-20152.5 KiB

ospf6_proto.hH A D27-Nov-20153.8 KiB

ospf6_route.cH A D27-Nov-201538.2 KiB

ospf6_route.hH A D27-Nov-201510.7 KiB

ospf6_snmp.cH A D27-Nov-201537.2 KiB

ospf6_snmp.hH A D27-Nov-20151.1 KiB

ospf6_spf.cH A D27-Nov-201525.9 KiB

ospf6_spf.hH A D27-Nov-20154.5 KiB

ospf6_top.cH A D27-Nov-201525.2 KiB

ospf6_top.hH A D27-Nov-20152.7 KiB

ospf6_zebra.cH A D27-Nov-201518.4 KiB

ospf6_zebra.hH A D27-Nov-20151.7 KiB

ospf6d.cH A D27-Nov-201555.4 KiB

ospf6d.conf.sampleH A D27-Nov-20151.1 KiB

ospf6d.hH A D27-Nov-20154.9 KiB

READMEH A D27-Nov-20153.1 KiB

README

1
2		  Zebra OSPF daemon for IPv6 network
3
4			     2003/08/18
5
6README for newer code is not yet. General usage should remain
7the same. For further usage, see command helps by typing '?'
8in vty, and then imagin ! ;p) Previous README contents follows.
9
10		  Zebra OSPF daemon for IPv6 network
11
12			     2001/12/20
13
14Zebra OSPF6d is OSPF version 3 daemon which is specified by
15"OSPF for IPv6" (RFC 2740).
16
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) !
21
22This 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.
24
25ospf6d's vty port was default to 2606/tcp.
26Use commands below.
27
28VIEW NODE:
29  show ipv6 ospf6
30    To see Router-ID, uptime of ospf6d, some statistics.
31
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.
35
36  show ipv6 ospf6 interface ...
37    To see the status of the OSPF interface, and the configuration
38    like interface costs.
39
40  show ipv6 ospf6 neighbor ...
41    Shows state of neighbors and choosed (Backup) DR on the I/F.
42
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.
48
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.
53
54CONFIG NODE:
55  interface NAME
56    To enter INTERFACE NODE
57
58  router ospf6 ...
59    To enter OSPF6 NODE
60
61INTERFACE NODE:
62  ipv6 ospf6 cost COST
63    Sets the interface's output cost. Depends on interface bandwidth by default.
64
65  ipv6 ospf6 hello-interval HELLOINTERVAL
66    Sets the interface's Hello Interval. default 10
67
68  ipv6 ospf6 dead-interval DEADINTERVAL
69    Sets the interface's Router Dead Interval. default 40
70
71  ipv6 ospf6 retransmit-interval RETRANSMITINTERVAL
72    Sets the interface's Rxmt Interval. default 5
73
74  ipv6 ospf6 priority PRIORITY
75    Sets the interface's Router Priority. default 1
76
77  ipv6 ospf6 transmit-delay TRANSMITDELAY
78    Sets the interface's Inf-Trans-Delay. default 1
79
80OSPF6 NODE:
81  router-id A.B.C.D
82    Sets the router's Router-ID
83
84  interface NAME area AREA
85    Binds interface to specified Area, and start
86    sending OSPFv3 packets.
87
88  auto-cost reference-bandwidth COST
89    Sets the reference bandwidth for cost calculations, where this
90    bandwidth is considered equivalent to an OSPF cost of 1, specified
91    in Mbits/s. The default is 100Mbit/s (i.e. a link of bandwidth
92    100Mbit/s or higher will have a cost of 1. Cost of lower bandwidth
93    links will be scaled with reference to this cost).  This
94    configuration setting MUST be consistent across all routers within
95    the OSPF domain.
96
97Sample configuration is in ospf6d.conf.sample.
98
99--
100Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
101Kunihiro Ishiguro <kunihiro@zebra.org>
102
103