Annotation of embedaddon/quagga/doc/ospf6d.texi, revision 1.1
1.1 ! misho 1: @node OSPFv3
! 2: @chapter OSPFv3
! 3:
! 4: @command{ospf6d} is a daemon support OSPF version 3 for IPv6 network.
! 5: OSPF 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::
! 13: * OSPF6 Configuration Examples::
! 14: @end menu
! 15:
! 16: @node OSPF6 router
! 17: @section OSPF6 router
! 18:
! 19: @deffn {Command} {router ospf6} {}
! 20: @end deffn
! 21:
! 22: @deffn {OSPF6 Command} {router-id @var{a.b.c.d}} {}
! 23: Set router's Router-ID.
! 24: @end deffn
! 25:
! 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
! 30:
! 31: @node OSPF6 area
! 32: @section OSPF6 area
! 33:
! 34: Area support for OSPFv3 is not yet implemented.
! 35:
! 36: @node OSPF6 interface
! 37: @section OSPF6 interface
! 38:
! 39: @deffn {Interface Command} {ipv6 ospf6 cost COST} {}
! 40: Sets interface's output cost. Default value is 1.
! 41: @end deffn
! 42:
! 43: @deffn {Interface Command} {ipv6 ospf6 hello-interval HELLOINTERVAL} {}
! 44: Sets interface's Hello Interval. Default 40
! 45: @end deffn
! 46:
! 47: @deffn {Interface Command} {ipv6 ospf6 dead-interval DEADINTERVAL} {}
! 48: Sets interface's Router Dead Interval. Default value is 40.
! 49: @end deffn
! 50:
! 51: @deffn {Interface Command} {ipv6 ospf6 retransmit-interval RETRANSMITINTERVAL} {}
! 52: Sets interface's Rxmt Interval. Default value is 5.
! 53: @end deffn
! 54:
! 55: @deffn {Interface Command} {ipv6 ospf6 priority PRIORITY} {}
! 56: Sets interface's Router Priority. Default value is 1.
! 57: @end deffn
! 58:
! 59: @deffn {Interface Command} {ipv6 ospf6 transmit-delay TRANSMITDELAY} {}
! 60: Sets interface's Inf-Trans-Delay. Default value is 1.
! 61: @end deffn
! 62:
! 63: @node Redistribute routes to OSPF6
! 64: @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:
! 71: @node Showing OSPF6 information
! 72: @section Showing OSPF6 information
! 73:
! 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
! 78:
! 79: @deffn {Command} {show ipv6 ospf6 database} {}
! 80: This command shows LSA database summary. You can specify the type of LSA.
! 81: @end deffn
! 82:
! 83: @deffn {Command} {show ipv6 ospf6 interface} {}
! 84: To see OSPF interface configuration like costs.
! 85: @end deffn
! 86:
! 87: @deffn {Command} {show ipv6 ospf6 neighbor} {}
! 88: Shows state and chosen (Backup) DR of neighbor.
! 89: @end deffn
! 90:
! 91: @deffn {Command} {show ipv6 ospf6 request-list A.B.C.D} {}
! 92: Shows requestlist of neighbor.
! 93: @end deffn
! 94:
! 95: @deffn {Command} {show ipv6 route ospf6} {}
! 96: This command shows internal routing table.
! 97: @end deffn
! 98:
! 99: @node OSPF6 Configuration Examples
! 100: @section OSPF6 Configuration Examples
! 101:
! 102: Example of ospf6d configured on one interface and area:
! 103:
! 104: @example
! 105: interface eth0
! 106: ipv6 ospf6 instance-id 0
! 107: !
! 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
! 112: !
! 113: @end example
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>