cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
2668
Views
0
Helpful
5
Replies

ASR1002 VLAN

ynyng
Level 1
Level 1

I am attempting to upgrade from a Cisco3945 to a ASR1002. On my Cisco3945, I have interface associated with VLANs. It appears that with the new IOSX, VLAN configuration has changed. Can someone provide a config to setup a simple VLAN?                  

5 Replies 5

Reza Sharifi
Hall of Fame
Hall of Fame

When you say "interface associated with VLANs" you mean Sub-interfaces or SVIs?

See below. Gig0/1/0 through gig0/1/4 are associated with VLAN1. Gig0/1/5 through gig0/1/7 are associated with VLAN2.

interface GigabitEthernet0/1/0

no ip address

!
interface GigabitEthernet0/1/1
no ip address
!
interface GigabitEthernet0/1/2
no ip address
!
interface GigabitEthernet0/1/3
no ip address
!
interface GigabitEthernet0/1/4
no ip address
!
interface GigabitEthernet0/1/5
switchport access vlan 2
no ip address
!
interface GigabitEthernet0/1/6
switchport access vlan 2
no ip address
!
interface GigabitEthernet0/1/7
switchport access vlan 2
no ip address
!
interface Vlan1
description $FW_INSIDE$
ip address 192.168.200.1 255.255.255.0
no ip redirects
no ip unreachables
no ip proxy-arp
ip flow ingress
ip virtual-reassembly in
!
interface Vlan2
description $FW_INSIDE$
ip address 192.168.100.1 255.255.255.0
no ip redirects
no ip unreachables
no ip proxy-arp
ip flow ingress
ip nat inside
ip virtual-reassembly in

interface GigabitEthernet0/1/0
no ip address

The above config is from my Cisco3945 ISR. I would like a similar setup on my ASR1002.

You have an Ether switch module, witch is like having a switch inside the router.  ASR is no capable of having a switch module.

HTH

In the ASR router, I have installed a SPA-8X1GE-V2. So, this cannot act as a switch module?

Assuming the SPA-8X1GE-V2 cannot act as a switch module, how can I setup my ASR router in a format similar to the above configuration?