cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
532
Views
5
Helpful
2
Replies

add customers vlans under master VLAN POP

santox
Level 1
Level 1

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!

2 Replies 2

M02@rt37
VIP
VIP

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
!

 

Best regards
.ı|ı.ı|ı. If This Helps, Please Rate .ı|ı.ı|ı.

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

Review Cisco Networking for a $25 gift card