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