mirror of
https://github.com/vyos/vyos-documentation.git
synced 2025-10-26 08:41:46 +01:00
correction of configuration error
This commit is contained in:
parent
9397cc646f
commit
d7833fb327
@ -1,3 +1,5 @@
|
|||||||
|
:lastproofread:2021-07-12
|
||||||
|
|
||||||
.. include:: /_include/need_improvement.txt
|
.. include:: /_include/need_improvement.txt
|
||||||
|
|
||||||
######
|
######
|
||||||
@ -53,7 +55,7 @@ neighbor.
|
|||||||
|
|
||||||
.. code-block:: none
|
.. code-block:: none
|
||||||
|
|
||||||
vyos@vos1:~$ sho ip b
|
vyos@vos1:~$ show ip bgp
|
||||||
BGP table version is 0, local router ID is 192.168.56.101
|
BGP table version is 0, local router ID is 192.168.56.101
|
||||||
Status codes: s suppressed, d damped, h history, * valid, > best, i - internal,
|
Status codes: s suppressed, d damped, h history, * valid, > best, i - internal,
|
||||||
r RIB-failure, S Stale, R Removed
|
r RIB-failure, S Stale, R Removed
|
||||||
@ -182,7 +184,7 @@ ISP's and VyOS router will respond from the same interface that the packet was
|
|||||||
received. Also, it used, if we want that one VPN tunnel to be through one
|
received. Also, it used, if we want that one VPN tunnel to be through one
|
||||||
provider, and the second through another.
|
provider, and the second through another.
|
||||||
|
|
||||||
* ``203.0.113.0.254`` IP addreess on VyOS eth1 from ISP1
|
* ``203.0.113.254`` IP addreess on VyOS eth1 from ISP1
|
||||||
* ``192.168.2.254`` IP addreess on VyOS eth2 from ISP2
|
* ``192.168.2.254`` IP addreess on VyOS eth2 from ISP2
|
||||||
* ``table 10`` Routing table used for ISP1
|
* ``table 10`` Routing table used for ISP1
|
||||||
* ``table 11`` Routing table used for ISP2
|
* ``table 11`` Routing table used for ISP2
|
||||||
@ -191,18 +193,18 @@ provider, and the second through another.
|
|||||||
.. code-block:: none
|
.. code-block:: none
|
||||||
|
|
||||||
set policy local-route rule 101 set table '10'
|
set policy local-route rule 101 set table '10'
|
||||||
set policy local-route rule 101 source '203.0.113.0.254'
|
set policy local-route rule 101 source '203.0.113.254'
|
||||||
set policy local-route rule 102 set table '11'
|
set policy local-route rule 102 set table '11'
|
||||||
set policy local-route rule 102 source '192.0.2.254'
|
set policy local-route rule 102 source '192.0.2.254'
|
||||||
set protocols static table 10 route '0.0.0.0/0' next-hop '203.0.113.0.1'
|
set protocols static table 10 route 0.0.0.0/0 next-hop '203.0.113.1'
|
||||||
set protocols static table 11 route '0.0.0.0/0' next-hop '192.0.2.2'
|
set protocols static table 11 route 0.0.0.0/0 next-hop '192.0.2.2'
|
||||||
|
|
||||||
Add multiple source IP in one rule with same priority
|
Add multiple source IP in one rule with same priority
|
||||||
|
|
||||||
.. code-block:: none
|
.. code-block:: none
|
||||||
|
|
||||||
set policy local-route rule 101 set table '10'
|
set policy local-route rule 101 set table '10'
|
||||||
set policy local-route rule 101 source '203.0.113.0.254'
|
set policy local-route rule 101 source '203.0.113.254'
|
||||||
set policy local-route rule 101 source '203.0.113.0.253'
|
set policy local-route rule 101 source '203.0.113.253'
|
||||||
set policy local-route rule 101 source '198.51.100.0/24'
|
set policy local-route rule 101 source '198.51.100.0/24'
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user