Node Man wrote: » Hi Everyone, Quick question - A port on a switch set to 'no switch' or Layer 3 mode - Does it automatically perform trunking? Thanks!
RouteMyPacket wrote: » You're a "CCNA"? I question your credentials asking such a question, seriously!
Node Man wrote: » It's disheartening when people start making accusations but what people should know or not. I've been successfully using 3550s for a long time now.
Dieg0M wrote: » The above post is not a 100% correct as a switch has no concept of a routed port. What the switch actually does in the background when you enter the "no switchport" command is assign an internal extended VLAN id to that port. This means that one VLAN from the extended range will be used for that port effectively making it a 1 legged L3 VLAN. You can see this port assignment with the command "show vlan internal usage". See below output: SW1#sh run int e0/2 Building configuration... Current configuration : 42 bytes ! interface Ethernet0/2 duplex auto end SW1#conf t Enter configuration commands, one per line. End with CNTL/Z. SW1(config)#int e0/2 SW1(config-if)#no swi SW1(config-if)#do sh vlan internal usage VLAN Usage ---- 1006 Ethernet0/2 SW1(config-if)#do sh vlan id 1006 VLAN id 1006 not found in current VLAN database SW1(config-if)#exit SW1(config)#vtp mode tran SW1(config)#vtp mode transparent Setting device to VTP Transparent mode for VLANS. SW1(config)#vlan 1006 SW1(config-vlan)#exit % Failed to create VLANs 1006VLAN(s) not available in Port Manager.%Failed to commit extended VLAN(s) changes.*Note: This is only valid in IOS, NX-OS handles routed ports on a L3 switch differently.