]> git.proxmox.com Git - mirror_frr.git/blame - doc/user/ripngd.rst
lib: Remove dead code
[mirror_frr.git] / doc / user / ripngd.rst
CommitLineData
0efdf0fe 1.. _ripng:
42fc5d26
QY
2
3*****
4RIPng
5*****
6
c1a54c05
QY
7*ripngd* supports the RIPng protocol as described in :rfc:`2080`. It's an IPv6
8reincarnation of the RIP protocol.
42fc5d26 9
0efdf0fe 10.. _invoking-ripngd:
42fc5d26
QY
11
12Invoking ripngd
13===============
14
c1a54c05 15There are no `ripngd` specific invocation options. Common options can be
0efdf0fe 16specified (:ref:`common-invocation-options`).
42fc5d26 17
0efdf0fe 18.. _ripngd-configuration:
42fc5d26
QY
19
20ripngd Configuration
21====================
22
23Currently ripngd supports the following commands:
24
c1a54c05 25.. clicmd:: router ripng
42fc5d26 26
c1a54c05 27 Enable RIPng.
42fc5d26 28
c1a54c05 29.. clicmd:: flush_timer TIME
42fc5d26 30
c1a54c05 31 Set flush timer.
42fc5d26 32
c1a54c05 33.. clicmd:: network NETWORK
42fc5d26 34
c1a54c05 35 Set RIPng enabled interface by NETWORK.
42fc5d26 36
c1a54c05 37.. clicmd:: network IFNAME
42fc5d26 38
c1a54c05 39 Set RIPng enabled interface by IFNAME.
42fc5d26 40
c1a54c05 41.. clicmd:: route NETWORK
42fc5d26 42
c1a54c05 43 Set RIPng static routing announcement of NETWORK.
42fc5d26 44
42fc5d26 45
0efdf0fe 46.. _ripngd-terminal-mode-commands:
42fc5d26
QY
47
48ripngd Terminal Mode Commands
49=============================
50
c1a54c05 51.. clicmd:: show ip ripng
42fc5d26 52
c1a54c05 53.. clicmd:: show debugging ripng
42fc5d26 54
c1a54c05 55.. clicmd:: debug ripng events
42fc5d26 56
c1a54c05 57.. clicmd:: debug ripng packet
42fc5d26 58
c1a54c05 59.. clicmd:: debug ripng zebra
42fc5d26 60
42fc5d26
QY
61
62ripngd Filtering Commands
63=========================
64
c1a54c05 65.. clicmd:: distribute-list ACCESS_LIST (in|out) IFNAME
42fc5d26 66
c1a54c05
QY
67 You can apply an access-list to the interface using the `distribute-list`
68 command. ACCESS_LIST is an access-list name. `direct` is ``in`` or
69 ``out``. If `direct` is ``in``, the access-list is applied only to incoming
70 packets.::
a8c90e15 71
c1a54c05 72 distribute-list local-only out sit1
42fc5d26 73
b832909b
QY
74
75Sample configuration
76====================
77
78.. code-block:: frr
79
80 debug ripng events
81 debug ripng packet
82
83 router ripng
84 network sit1
85 route 3ffe:506::0/32
86 distribute-list local-only out sit1
87
88 ipv6 access-list local-only permit 3ffe:506::0/32
89 ipv6 access-list local-only deny any