I am new to CISCO and have the following problem:
I have 3 routers. Between these only one physical connection.
The VLAN 100 is connected to R1 and R2.
The VLAN 200 is connected to R1, R2 and R3.
The connection between R2 and R3 is a port-channel (two physical interface).
In particular Router 2 interests me….
All routers are running Cisco IOS XE Software, Version 16.06.04.
Router 1 Interface GE 0/0/0 - VLAN-ID 100, IP 192.168.1.1/24 - VLAN-ID 200, IP 192.168.2.1/24 Router 2 Interface GE 0/0/0 - VLAN-ID 100, IP 192.168.1.2/24 - VLAN-ID 200, IP -- Interface GE 0/0/1 - VLAN-ID 200, IP -- Router 3 Interface GE 0/0/0 - VLAN-ID 200, IP 192.168.2.2/24
Thank you!
Paul
Here the config of R2:
bridge-domain 100 bridge-domain 200 ! interface Port-channel2 description "to_R3" no ip address no negotiation auto service instance 200 ethernet encapsulation dot1q 200 rewrite ingress tag pop 1 symmetric bridge-domain 200 ! ! interface GigabitEthernet0/0/0 no ip address negotiation auto service instance 200 ethernet encapsulation dot1q 200 rewrite ingress tag pop 1 symmetric bridge-domain 200 ! service instance 100 ethernet encapsulation dot1q 100 rewrite ingress tag pop 1 symmetric bridge-domain 100 ! ! interface GigabitEthernet0/0/1 no ip address no ip redirects no ip unreachables no ip proxy-arp negotiation auto no mop enabled channel-group 2 ! interface GigabitEthernet0/0/2 no ip address no ip redirects no ip unreachables no ip proxy-arp negotiation auto no mop enabled channel-group 2 ! interface BDI100 ip address 192.168.1.2 255.255.255.0 encapsulation dot1Q 100 !
Best Answer
So here is the working solution... First of all - bridge-domains are not supported under sub-interfaces!
Test stand looks like this
I've created two logical systems on vMX to simulate two different routers. ls1 contains interfaces
ge-0/0/0.200
(tagged, VLAN 200, 192.168.200.1/24) andge-0/0/0.100
(tagged, VLAN 100, 192.168.100.1/24); ls2 - interfacege-0/0/1.200
(tagged, VLAN 200, 192.168.200.2/24).vMX config
CSRv config
RESULT
You can create multiple service instances under single interface to interconnect more devices via bridge-domains.
Hope that will help!