File: ripngd.texi

package info (click to toggle)
quagga 0.98.3-7.5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 11,424 kB
  • ctags: 11,439
  • sloc: ansic: 164,201; sh: 9,243; perl: 638; makefile: 413; lisp: 62
file content (84 lines) | stat: -rw-r--r-- 2,160 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
@c -*-texinfo-*-
@c This is part of the Quagga Manual.
@c @value{COPYRIGHT_STR}
@c See file quagga.texi for copying conditions.
@node RIPng
@chapter RIPng

@command{ripngd} supports the RIPng protocol as described in RFC2080.  It's an
IPv6 reincarnation of the RIP protocol.

@menu
* Invoking ripngd::             
* ripngd Configuration::        
* ripngd Terminal Mode Commands::  
* ripngd Filtering Commands::   
@end menu

@node Invoking ripngd
@section Invoking ripngd

There are no @code{ripngd} specific invocation options.  Common options
can be specified (@pxref{Common Invocation Options}).

@node ripngd Configuration
@section ripngd Configuration

Currently ripngd supports the following commands:

@deffn Command {router ripng} {}
Enable RIPng.
@end deffn

@deffn {RIPng Command} {flush_timer @var{time}} {}
Set flush timer.
@end deffn

@deffn {RIPng Command} {network @var{network}} {}
Set RIPng enabled interface by @var{network}
@end deffn

@deffn {RIPng Command} {network @var{ifname}} {}
Set RIPng enabled interface by @var{ifname}
@end deffn

@deffn {RIPng Command} {route @var{network}} {}
Set RIPng static routing announcement of @var{network}.
@end deffn

@deffn Command {router zebra} {}
This command is the default and does not appear in the configuration.
With this statement, RIPng routes go to the @command{zebra} daemon.
@end deffn

@node ripngd Terminal Mode Commands
@section ripngd Terminal Mode Commands

@deffn Command {show ip ripng} {}
@end deffn

@deffn Command {show debugging ripng} {}
@end deffn

@deffn Command {debug ripng events} {}
@end deffn

@deffn Command {debug ripng packet} {}
@end deffn

@deffn Command {debug ripng zebra} {}
@end deffn

@node ripngd Filtering Commands
@section ripngd Filtering Commands

@deffn Command {distribute-list @var{access_list} (in|out) @var{ifname}} {}
You can apply an access-list to the interface using the
@code{distribute-list} command.  @var{access_list} is an access-list
name.  @var{direct} is @samp{in} or @samp{out}.  If @var{direct} is
@samp{in}, the access-list is applied only to incoming packets.

@example
distribute-list local-only out sit1
@end example
@end deffn