cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
461
Views
0
Helpful
4
Replies

Command reguested

michael.spence
Level 1
Level 1

I have installed a WS-6748-GE-TX module in slot 2 on a catalyst 6509. When I try to change the vlan membership on interface gig 2/1 I get the following message: Command rejected: Gi2/1 not a switching port. Any ideas?

1 Accepted Solution

Accepted Solutions

Prashanth Krishnappa
Cisco Employee
Cisco Employee

You need to make it a switchport first (from routed port). Try the following

conf t

int gig 2/1

switchport

switchport access VLAN

View solution in original post

4 Replies 4

Prashanth Krishnappa
Cisco Employee
Cisco Employee

You need to make it a switchport first (from routed port). Try the following

conf t

int gig 2/1

switchport

switchport access VLAN

Thanks.

amit-singh
Level 8
Level 8

Hi,

By default on IOS the ports are layer 3 ports. You have to make them Layer 2.

Int range gig 2/1 - 48

no shut

switchport

switchport access vlan

HTH,

-amit singh

michael.spence
Level 1
Level 1

Thanks, that worked. I appreciate your time.