Edit: more complete configs
vlan 33
description New VLAN on my side
vlan 10
description Existing VLAN on my side. ISP's new drop has this tagged the same
==Standard VLAN ATTEMPT== Working!
In this port is the drop from my ISP:
interface Ten-GigabitEthernet1/0/2
description ISP DROP
port link-type trunk
undo port trunk permit vlan 1
port trunk permit vlan 10
In this port is a trunk with vlan 10:
interface Ten-GigabitEthernet2/0/21
description VMUPLINK
port link-type trunk
undo port trunk permit vlan 1
port trunk permit vlan 10 200 300 400 601
#
Simple access port:
interface Ten-GigabitEthernet2/0/22
description Test VLAN10
port access vlan 10
#
Test Vlan interface in existing VLAN 10
interface Vlan-interface10
ip address 142.84.55.62 255.255.255.252
I can now ping 142.84.55.61 (IP modified for the internet but it is indeed a /30) from:
- The Vlan interface
- the access port 2/0/22
- a VM in a Port Group assigned vlan id 10
==VLAN MAPPING ATTEMPT== Not working!
In this port is the drop from my ISP:
interface Ten-GigabitEthernet1/0/2
description ISP DROP
port link-type trunk
undo port trunk permit vlan 1
port trunk permit vlan 33 10
vlan mapping 10 translated-vlan 33
In this port is a trunk with vlan 33 and a vlan in it:
interface Ten-GigabitEthernet2/0/21
description VMUPLINK
port link-type trunk
undo port trunk permit vlan 1
port trunk permit vlan 33 200 300 400 601
#
This port is a simple access port in 33
interface Ten-GigabitEthernet2/0/22
description Test VLAN33
port access vlan 33
#
Attempted Vlan interface in New VLAN 33
interface Vlan-interface33
ip address 142.84.55.62 255.255.255.252
I can't ping 142.84.55.61 (IP modified for the internet but it is indeed a /30) from neither:
- The Vlan interface
- the access port 2/0/22
- a VM in a Port Group assigned vlan id 33