12-12-2022 03:48 AM
Hi I add in my cisco ASR 1001 PPPoE Server Open Fiber POPs vlans.
Every Open Fiber POP must have a VLAN assign to my KIT. Every customers living in the city behind the POP, will have a customer vlan for reach connection.
How can I add multiple customers vlans under POP VLAN?
interface TenGigabitEthernet0/0/1.1800
description ** OpenFiber / POP AN_05 **
encapsulation dot1Q 1800
thank you and have a nice day!
02-23-2023 01:15 AM - edited 02-23-2023 01:25 AM
Hello @santox
To add multiple customer VLANs under the OpenFiber POP VLAN on your Cisco ASR 1001 router, you can create subinterfaces for each customer VLAN under the main interface TenGigabitEthernet0/0/1.1800:
interface TenGigabitEthernet0/0/1.1800
description ** OpenFiber / POP AN_05 **
encapsulation dot1Q 1800
!
interface TenGigabitEthernet0/0/1.1800.1000
description ** Customer VLAN 1000 **
encapsulation dot1Q 1000
ip address 192.168.1.1 255.255.255.0
!
interface TenGigabitEthernet0/0/1.1800.2000
description ** Customer VLAN 2000 **
encapsulation dot1Q 2000
ip address 192.168.2.1 255.255.255.0
!
If you are unable to create subinterfaces for customer VLANs under the main interface on your ASR 1001, you may need to configure the customer VLANs directly on the main interface.
interface TenGigabitEthernet0/0/1.1800
description ** OpenFiber / POP AN_05 **
encapsulation dot1Q 1800
ip address <POP IP address> <POP subnet mask>
!
interface TenGigabitEthernet0/0/1.1801
description ** OpenFiber / Customer VLAN 1 **
encapsulation dot1Q 1801
ip address @_MASK
!
interface TenGigabitEthernet0/0/1.1802
description ** OpenFiber / Customer VLAN 2 **
encapsulation dot1Q 1802
ip address @_MASK
!
02-23-2023 11:44 PM
hi thanks for reply
i solved the problem with these commands
interface TenGigabitEthernet0/0/1.1800
description ** OpenFiber / POP AN_05 **
encapsulation dot1Q 1800 second-dot1q 800-999
pppoe enable group global
POP VLAN is 1800
customer vlans are from 800 to 999 and are under main vlan 1800
pppoe server is enable in all customer vlans
I need to upgrade ASR1001 from 16.09.02 to 17.06.03a because with old version these commands doesnt work
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide