blob: ab3dcf9591e54921a6aa12803a838ebdff42073a (
plain)
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
85
86
87
88
89
|
.. _RIPng:
*****
RIPng
*****
*ripngd* supports the RIPng protocol as described in :rfc:`2080`. It's an IPv6
reincarnation of the RIP protocol.
.. _Invoking_ripngd:
Invoking ripngd
===============
There are no `ripngd` specific invocation options. Common options can be
specified (:ref:`Common_Invocation_Options`).
.. _ripngd_Configuration:
ripngd Configuration
====================
Currently ripngd supports the following commands:
.. index:: router ripng
.. clicmd:: router ripng
Enable RIPng.
.. index:: flush_timer TIME
.. clicmd:: flush_timer TIME
Set flush timer.
.. index:: network NETWORK
.. clicmd:: network NETWORK
Set RIPng enabled interface by NETWORK.
.. index:: network IFNAME
.. clicmd:: network IFNAME
Set RIPng enabled interface by IFNAME.
.. index:: route NETWORK
.. clicmd:: route NETWORK
Set RIPng static routing announcement of NETWORK.
.. index:: router zebra
.. clicmd:: router zebra
This command is the default and does not appear in the configuration. With
this statement, RIPng routes go to the *zebra* daemon.
.. _ripngd_Terminal_Mode_Commands:
ripngd Terminal Mode Commands
=============================
.. index:: show ip ripng
.. clicmd:: show ip ripng
.. index:: show debugging ripng
.. clicmd:: show debugging ripng
.. index:: debug ripng events
.. clicmd:: debug ripng events
.. index:: debug ripng packet
.. clicmd:: debug ripng packet
.. index:: debug ripng zebra
.. clicmd:: debug ripng zebra
ripngd Filtering Commands
=========================
.. index:: distribute-list ACCESS_LIST (in|out) IFNAME
.. clicmd:: distribute-list ACCESS_LIST (in|out) IFNAME
You can apply an access-list to the interface using the `distribute-list`
command. ACCESS_LIST is an access-list name. `direct` is ``in`` or
``out``. If `direct` is ``in``, the access-list is applied only to incoming
packets.::
distribute-list local-only out sit1
|