mirror of
https://github.com/vyos/vyos-documentation.git
synced 2025-10-26 08:41:46 +01:00
ospfv3 /mpls : worng commannds and description
This commit is contained in:
parent
3c37e69994
commit
6b99162a0b
@ -28,11 +28,13 @@ For more information on how MPLS label switching works, please go visit
|
|||||||
`Wikipedia (MPLS)`_.
|
`Wikipedia (MPLS)`_.
|
||||||
|
|
||||||
.. note:: MPLS support in VyOS is not finished yet, and therefore its
|
.. note:: MPLS support in VyOS is not finished yet, and therefore its
|
||||||
functionality is limited. Currently there is no support for MPLS enabled VPN
|
functionality is limited. Currently there is no support for MPLS enabled VPN
|
||||||
services such as L3VPNs, L2VPNs, and mVPNs. RSVP support is also not present
|
services such as L2VPNs and mVPNs. RSVP support is also not present as the
|
||||||
as the underlying routing stack (FRR) does not implement it. Currently VyOS
|
underlying routing stack (FRR) does not implement it. Currently VyOS
|
||||||
can be configured as a label switched router (MPLS P router), in both
|
implements LDP as described in RFC 5036; other LDP standard are the
|
||||||
penultimate and ultimate hop popping operations.
|
following ones: RFC 6720, RFC 6667, RFC 5919, RFC 5561, RFC 7552, RFC 4447.
|
||||||
|
Because MPLS is already available (FRR also supports RFC 3031).
|
||||||
|
|
||||||
|
|
||||||
Label Distribution Protocol
|
Label Distribution Protocol
|
||||||
===========================
|
===========================
|
||||||
|
|||||||
@ -790,7 +790,7 @@ General
|
|||||||
VyOS does not have a special command to start the OSPFv3 process. The OSPFv3
|
VyOS does not have a special command to start the OSPFv3 process. The OSPFv3
|
||||||
process starts when the first ospf enabled interface is configured.
|
process starts when the first ospf enabled interface is configured.
|
||||||
|
|
||||||
.. cfgcmd:: set protocols ospfv3 area <number> interface <interface>
|
.. cfgcmd:: set protocols ospfv3 interface <interface> area <number>
|
||||||
|
|
||||||
This command specifies the OSPFv3 enabled interface. This command is also
|
This command specifies the OSPFv3 enabled interface. This command is also
|
||||||
used to enable the OSPF process. The area number can be specified in
|
used to enable the OSPF process. The area number can be specified in
|
||||||
@ -987,7 +987,7 @@ A typical configuration using 2 nodes.
|
|||||||
|
|
||||||
.. code-block:: none
|
.. code-block:: none
|
||||||
|
|
||||||
set protocols ospfv3 area 0.0.0.0 interface eth1
|
set protocols ospfv3 interface eth1 area 0.0.0.0
|
||||||
set protocols ospfv3 area 0.0.0.0 range 2001:db8:1::/64
|
set protocols ospfv3 area 0.0.0.0 range 2001:db8:1::/64
|
||||||
set protocols ospfv3 parameters router-id 192.168.1.1
|
set protocols ospfv3 parameters router-id 192.168.1.1
|
||||||
set protocols ospfv3 redistribute connected
|
set protocols ospfv3 redistribute connected
|
||||||
@ -996,7 +996,7 @@ A typical configuration using 2 nodes.
|
|||||||
|
|
||||||
.. code-block:: none
|
.. code-block:: none
|
||||||
|
|
||||||
set protocols ospfv3 area 0.0.0.0 interface eth1
|
set protocols ospfv3 interface eth1 area 0.0.0.0
|
||||||
set protocols ospfv3 area 0.0.0.0 range 2001:db8:2::/64
|
set protocols ospfv3 area 0.0.0.0 range 2001:db8:2::/64
|
||||||
set protocols ospfv3 parameters router-id 192.168.2.1
|
set protocols ospfv3 parameters router-id 192.168.2.1
|
||||||
set protocols ospfv3 redistribute connected
|
set protocols ospfv3 redistribute connected
|
||||||
@ -1025,8 +1025,8 @@ Example configuration for WireGuard interfaces:
|
|||||||
set interfaces wireguard wg01 peer ospf02 pubkey 'ie3...='
|
set interfaces wireguard wg01 peer ospf02 pubkey 'ie3...='
|
||||||
set interfaces wireguard wg01 port '12345'
|
set interfaces wireguard wg01 port '12345'
|
||||||
set protocols ospfv3 parameters router-id 192.168.1.1
|
set protocols ospfv3 parameters router-id 192.168.1.1
|
||||||
set protocols ospfv3 area 0.0.0.0 interface 'wg01'
|
set protocols ospfv3 interface 'wg01' area 0.0.0.0
|
||||||
set protocols ospfv3 area 0.0.0.0 interface 'lo'
|
set protocols ospfv3 interface 'lo' area 0.0.0.0
|
||||||
|
|
||||||
**Node 2**
|
**Node 2**
|
||||||
|
|
||||||
@ -1040,8 +1040,8 @@ Example configuration for WireGuard interfaces:
|
|||||||
set interfaces wireguard wg01 peer ospf01 pubkey 'NHI...='
|
set interfaces wireguard wg01 peer ospf01 pubkey 'NHI...='
|
||||||
set interfaces wireguard wg01 port '12345'
|
set interfaces wireguard wg01 port '12345'
|
||||||
set protocols ospfv3 parameters router-id 192.168.1.2
|
set protocols ospfv3 parameters router-id 192.168.1.2
|
||||||
set protocols ospfv3 area 0.0.0.0 interface 'wg01'
|
set protocols ospfv3 interface 'wg01' area 0.0.0.0
|
||||||
set protocols ospfv3 area 0.0.0.0 interface 'lo'
|
set protocols ospfv3 interface 'lo' area 0.0.0.0
|
||||||
|
|
||||||
**Status**
|
**Status**
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user