paul | 76b89b4 | 2004-11-06 17:13:09 +0000 | [diff] [blame] | 1 | @node RIPng |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2 | @chapter RIPng |
| 3 | |
| 4 | @command{ripngd} supports the RIPng protocol as described in RFC2080. It's an |
| 5 | IPv6 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 | |
paul | 76b89b4 | 2004-11-06 17:13:09 +0000 | [diff] [blame] | 14 | @node Invoking ripngd |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 15 | @section Invoking ripngd |
| 16 | |
| 17 | There are no @code{ripngd} specific invocation options. Common options |
| 18 | can be specified (@pxref{Common Invocation Options}). |
| 19 | |
paul | 76b89b4 | 2004-11-06 17:13:09 +0000 | [diff] [blame] | 20 | @node ripngd Configuration |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 21 | @section ripngd Configuration |
| 22 | |
| 23 | Currently ripngd supports the following commands: |
| 24 | |
| 25 | @deffn Command {router ripng} {} |
| 26 | Enable RIPng. |
| 27 | @end deffn |
| 28 | |
| 29 | @deffn {RIPng Command} {flush_timer @var{time}} {} |
| 30 | Set flush timer. |
| 31 | @end deffn |
| 32 | |
| 33 | @deffn {RIPng Command} {network @var{network}} {} |
| 34 | Set RIPng enabled interface by @var{network} |
| 35 | @end deffn |
| 36 | |
| 37 | @deffn {RIPng Command} {network @var{ifname}} {} |
| 38 | Set RIPng enabled interface by @var{ifname} |
| 39 | @end deffn |
| 40 | |
| 41 | @deffn {RIPng Command} {route @var{network}} {} |
| 42 | Set RIPng static routing announcement of @var{network}. |
| 43 | @end deffn |
| 44 | |
| 45 | @deffn Command {router zebra} {} |
| 46 | This command is the default and does not appear in the configuration. |
| 47 | With this statement, RIPng routes go to the @command{zebra} daemon. |
| 48 | @end deffn |
| 49 | |
paul | 76b89b4 | 2004-11-06 17:13:09 +0000 | [diff] [blame] | 50 | @node ripngd Terminal Mode Commands |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 51 | @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 | |
paul | 76b89b4 | 2004-11-06 17:13:09 +0000 | [diff] [blame] | 68 | @node ripngd Filtering Commands |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 69 | @section ripngd Filtering Commands |
| 70 | |
| 71 | @deffn Command {distribute-list @var{access_list} (in|out) @var{ifname}} {} |
| 72 | You can apply an access-list to the interface using the |
| 73 | @code{distribute-list} command. @var{access_list} is an access-list |
| 74 | name. @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 |
| 78 | distribute-list local-only out sit1 |
| 79 | @end example |
| 80 | @end deffn |