cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
5232
Views
30
Helpful
13
Replies

untagged trunk

David.Spencer
Level 1
Level 1

I was able to perform this on an Avaya switch, but we're moving to Cisco and I'm not sure how to perform this function on a CISCO. I'm aiming to do this on a C9200L

 

requirement:

device interface -vlan 32,40, with PVID 40. All untagged.

 

It requires both to be untagged, as the device has errors when it is tagged. It needs to be on both networks, as it needs to receive broadcast traffic from both, while broadcasting it's own traffic on the PVID. It must do this on a single network interface.

 

On avaya I could set "flexible tagging mode" and set multiple untagged vlans on the port.

 

I know this is a very non-standard configuration, but the equipment is over 20 years old and is very specific to it's requirements.

1 Accepted Solution

Accepted Solutions

David.Spencer
Level 1
Level 1

It looks like what I require is switchport mode general, which in my previous hardware we just called "untag all".

 

the Catalyst 9000 series does not support switchport mode general, so it looks like I'll need to find a new hardware solution.

View solution in original post

13 Replies 13

balaji.bandi
Hall of Fame
Hall of Fame

Cisco only allow 1 Native VLAN example  should work for you  as per the description, do test and let us know.

 

interface GigabitEthernet x/x
switchport trunk native vlan 40
switchport mode trunk

 

if you want more control :

 

interface GigabitEthernet x/x

switchport mode trunk
switchport trunk native vlan 40
switchport mode trunk allowed vlan 32,40

 

BB

***** Rate All Helpful Responses *****

How to Ask The Cisco Community for Help

Hi Balaji,

 

You might have missed the part in my post where all the vlans must be untagged, not just the pvid.

 

I've tested this as a regular trunk port as you've suggested without success.

 

marce1000
VIP
VIP

 

 - Strange also in terms of standards, device should be vlan-aware if  it does not want to diffuse traffic on unneeded vlan's , opinions in these threads seem to align :

   https://community.cisco.com/t5/small-business-routers/rv320-why-can-a-port-only-have-one-untagged-and-multiple-tagged/td-p/2690574

  https://community.cisco.com/t5/switching/can-i-configure-multiple-native-vlans-on-a-single-trunk-link-on/td-p/4142856

 M.



-- ' 'Good body every evening' ' this sentence was once spotted on a logo at the entrance of a Weight Watchers Club !

The device is for DECNET and VAX communication, so it's very particular. It's not VLAN aware, and needs to communicate to both.

 

The DECNET and VAX systems need to be on separate VLAN's as they are very sensitive to noise.

I can get this to work on nortel/baystack/avaya/extreme switches as they allow you to have multiple access vlans on a single port ( or fully untagged trunk). I'm hoping that Cisco can provide some sort of similar funcionality.

 

 

 - Must use some mac address prefix knowledge to know to whom to talk too. Must defend cisco here, as other reply indicated , that is very outdated ,modern hardware such as hypervisors , fileservers , etc are all vlan-aware in these days.  I used to work on DECnet and vms too , more then 30-years ago , where are the days (smile).

 M.



-- ' 'Good body every evening' ' this sentence was once spotted on a logo at the entrance of a Weight Watchers Club !

I agree, all modern systems are generally vlan aware, however these aren't modern. They were installed in the 80s (VAX) and early 90s (DEC), and cannot be replaced yet.

 

I wish our production used hardware built in this century, but it is not. All I know is that if I change the interfaces to standard Trunk format, or add any form of tagging, the systems fail to communicate until changed back.

 

Joseph W. Doherty
Hall of Fame
Hall of Fame

Interesting that other vendor(s) allow this, because consider where should ingress traffic on such a port be directed?  I.e. you effectively changed multiple VLANs into one VLAN.

Two ways I see it might be done on a Cisco device.  On a L2 switch, you might have one all three VLANs directed to access ports, one for each VLAN.  Then you might also have additional access ports for one of the VLANs.  Those ports would be connected to access ports other than the one VLAN.

E.g.

access port VLAN 10 (this port would should all the VLANs traffic)

access port VLAN 20 connected to a VLAN 10 access port

access port VLAN 30 connected to a VLAN 10 access port

The other way, on a L3 switch, would be to have your multiple VLANs routed to a routed port.

For the other vendors, ingress traffic is defaulted to the PVID (native vlan). The end result is that the device is listening to all the vlans on the port, and it's outbound traffic is on the PVID, without the device seeing the tags.

 

None of the protocols it uses is directed traffic, all the devices on these subents only communicate with a broadcast type traffic, either in form of modbus, decnet, SAF, or whatever the VAX is using.

 

David.Spencer
Level 1
Level 1

It looks like what I require is switchport mode general, which in my previous hardware we just called "untag all".

 

the Catalyst 9000 series does not support switchport mode general, so it looks like I'll need to find a new hardware solution.

Hello


@David.Spencer wrote:

It looks like what I require is switchport mode general, which in my previous hardware we just called "untag all".

 

the Catalyst 9000 series does not support switchport mode general, so it looks like I'll need to find a new hardware solution.


On the catalyst 9000 have you tried making the port an trunk to allow all vlans with fictitious native vlan of your choosing and on the Avaya switch set the pvid to the same fictitious untagged vlan

9000
interface GigabitEthernet x/x
switchport trunk native vlan 999
switchport mode trunk allowed vlan 100,110,120

Avaya
x/x
switchport general pvid 999
switchport general allowed vlan add 100,110,120 tagged

 

or
9000
interface GigabitEthernet x/x
switchport mode access
switchport access vlan 1

Avaya
x/x
switchport mode general


Please rate and mark as an accepted solution if you have found any of the information provided useful.
This then could assist others on these forums to find a valuable answer and broadens the community’s global network.

Kind Regards
Paul

Hi Paul,

 

Please read the full post. I'm not trying to make a trunk between an avaya and cisco switch. I'm connecting an end device that needs multiple untagged vlans (switchport mode general) on the cisco c9000, similarly to how i'm able to on avaya and dell switches.

Hello


@David.Spencer wrote:

I'm not trying to make a trunk between an avaya and cisco switch. I'm connecting an end device that needs multiple untagged vlans (switchport mode general)

So the below would in theory allow all untagged traffic

 

9000
interface GigabitEthernet x/x
switchport mode access
switchport access vlan 1 

Avaya
x/x
switchport mode general


Please rate and mark as an accepted solution if you have found any of the information provided useful.
This then could assist others on these forums to find a valuable answer and broadens the community’s global network.

Kind Regards
Paul

How would setting "switchport mode access" and "switchport access vlan 1" allow multiple untagged vlans on that port? That should only support traffic from vlan1.




Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community:

Review Cisco Networking products for a $25 gift card