blob: 433f1ab4399074327439b5c588d334fdc856e921 [file] [log] [blame]
paul76b89b42004-11-06 17:13:09 +00001@node RIPng
paul718e3742002-12-13 20:15:29 +00002@chapter RIPng
3
4@command{ripngd} supports the RIPng protocol as described in RFC2080. It's an
5IPv6 reincarnation of the RIP protocol.
6
7@menu
8* Invoking ripngd::
9* ripngd Configuration::
10* ripngd Terminal Mode Commands::
11* ripngd Filtering Commands::
12@end menu
13
paul76b89b42004-11-06 17:13:09 +000014@node Invoking ripngd
paul718e3742002-12-13 20:15:29 +000015@section Invoking ripngd
16
17There are no @code{ripngd} specific invocation options. Common options
18can be specified (@pxref{Common Invocation Options}).
19
paul76b89b42004-11-06 17:13:09 +000020@node ripngd Configuration
paul718e3742002-12-13 20:15:29 +000021@section ripngd Configuration
22
23Currently ripngd supports the following commands:
24
25@deffn Command {router ripng} {}
26Enable RIPng.
27@end deffn
28
29@deffn {RIPng Command} {flush_timer @var{time}} {}
30Set flush timer.
31@end deffn
32
33@deffn {RIPng Command} {network @var{network}} {}
34Set RIPng enabled interface by @var{network}
35@end deffn
36
37@deffn {RIPng Command} {network @var{ifname}} {}
38Set RIPng enabled interface by @var{ifname}
39@end deffn
40
41@deffn {RIPng Command} {route @var{network}} {}
42Set RIPng static routing announcement of @var{network}.
43@end deffn
44
45@deffn Command {router zebra} {}
46This command is the default and does not appear in the configuration.
47With this statement, RIPng routes go to the @command{zebra} daemon.
48@end deffn
49
paul76b89b42004-11-06 17:13:09 +000050@node ripngd Terminal Mode Commands
paul718e3742002-12-13 20:15:29 +000051@section ripngd Terminal Mode Commands
52
53@deffn Command {show ip ripng} {}
54@end deffn
55
56@deffn Command {show debugging ripng} {}
57@end deffn
58
59@deffn Command {debug ripng events} {}
60@end deffn
61
62@deffn Command {debug ripng packet} {}
63@end deffn
64
65@deffn Command {debug ripng zebra} {}
66@end deffn
67
paul76b89b42004-11-06 17:13:09 +000068@node ripngd Filtering Commands
paul718e3742002-12-13 20:15:29 +000069@section ripngd Filtering Commands
70
71@deffn Command {distribute-list @var{access_list} (in|out) @var{ifname}} {}
72You can apply an access-list to the interface using the
73@code{distribute-list} command. @var{access_list} is an access-list
74name. @var{direct} is @samp{in} or @samp{out}. If @var{direct} is
75@samp{in}, the access-list is applied only to incoming packets.
76
77@example
78distribute-list local-only out sit1
79@end example
80@end deffn