cancelar
Mostrando los resultados de 
Buscar en lugar de 
Quiere decir: 
cancel
464
Visitas
0
ÚTIL
5
Respuestas

SD-WAN Service Side Config con BGP y subinterfaces

Hola, espero me puedan ayudar o al menos darme una idea

Tengo una CORE con dos Interfaces VLANs, Interfaces vlans 100 y interface vlan 101, y estoy implementando un nuevo router Cisco SDWAN.

Por petición del cliente quiere que la vlan 100, pertenezca a la VPN/VRF100 y la vlan 101 pertenezca a la VPN/VRF101.
Tengo un Trunk entre el SW Core y el cEdge. Los Gateways de la Vlans estan  en el SW Core mientras que en el cEdge hay sub Interfaces para Vlans 100 y 101 dentro del mismo dominio de direcciones.
Cada sub interface esta en la vrf 100 para vlan 100, vrf 101 para la vlan 101. El problema es que estoy aplicando BGP entre ambos equipos y parece no funcionar, y no se si me hace falta algo, he visto varios documentos y tutoriales pero nada parece funcionar. Si me pueden porfa ayudar. Les estoy dejando la configuracion y un diagrama porque lo estoy intendo hacer un LAB tambien.

CONFIG CEDGE

vrf definition 100
description MERAKI_MV
rd 100:100
address-family ipv4
exit-address-family

vrf definition 101
description MERAKI_MR
rd 101:101
address-family ipv4
exit-address-family

 

interface GigabitEthernet3
description TO-SW
no shutdown

interface GigabitEthernet3.100
encapsulation dot1Q 100
vrf forwarding 100
ip address 172.168.100.2 255.255.255.0
no shu

interface GigabitEthernet3.101
encapsulation dot1Q 101
vrf forwarding 101
ip address 172.168.101.2 255.255.255.0
no shu


router bgp 65100
bgp log-neighbor-changes
!
address-family ipv4 vrf 100
redistribute omp
neighbor 172.168.100.1 remote-as 65101
neighbor 172.168.100.1 ebgp-multihop 2
neighbor 172.168.100.1 activate
exit-address-family
!

address-family ipv4 vrf 101
redistribute omp
neighbor 172.168.101.1 remote-as 65101
neighbor 172.168.101.1 ebgp-multihop 2
neighbor 172.168.101.1 activate
exit-address-family
!

 

 


------------

SW CONFIG BGP

router bgp 65101
bgp log-neighbor-changes
neighbor 172.168.100.2 remote-as 65100
neighbor 172.168.101.2 remote-as 65100

vlan 100
exit
vlan 101
exit

!
interface Vlan100
description MERAKI_MV
ip address 172.168.100.1 255.255.255.0
!
interface Vlan101
description MERAKI_MR
ip address 172.168.101.1 255.255.255.0
!

interface GigabitEthernet1/0
switchport access vlan 100
switchport mode access
negotiation auto
!
interface GigabitEthernet1/1
switchport access vlan 101
switchport mode access
negotiation auto
!

 

 

 

5 RESPUESTAS 5

@wladmirmendozandc 

 I have one question. You are using one interface on the cEdge side with subinterface.  Should not you to have one interface on the switch side in trunk to connect to the Router? 

Hiiii, you mean this config on my switch?

wladmirmendozandc_0-1730767510104.png

 

Alright, this is it. I did not see this config above that´s why I asked.

 I believe you dont need this config on the cEdge "neighbor 172.168.100.1 ebgp-multihop 2 "

  If I understood properly, the router and the switch is directly connected.

hiiii

Yes, my cedge and the switch are directly connected, i delete "multiphop  line" in my config but it doesn't seem to work. It's the first time i configure BGP and VRF of this type.

Is connectivity fine?

Did you run any debug?