cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
81907
Views
10
Helpful
4
Replies

Need to activate a port

jfree9801
Level 1
Level 1

I am in a position where our Network Engineer is gone and I need to activate a port and add it to the correct VLAN. I do not have any Cisco experience so I have no clue on how to do this. I am using a Catalyst 3850-48F. Any help would be greatly appreciated.

1 Accepted Solution

Accepted Solutions

You obviously need to know the Port ID of the port you are trying to configure, so you need to know if it is Port 1 on the Switch or Port 26 for example. 

The following show command will list all the interfaces on the switch:

#show interface status

You should be able to get the exact port name from the command above.
If you know its Port 26 on the switch, you may find the actual Port name is Fa1/0/26.

Anyway, once you have this its fairly easy to add it to a Vlan:

#conf t
(config)#interface fa1/0/26
(config-if)#switchport access vlan 50
(config-if)#no shut

I have chosen Vlan 50 above but this needs to be the relevant Vlan ID you want to put the port into.

A good command to show the actual configuration of a port is:

#show run interface fa1/0/26

Thanks

View solution in original post

4 Replies 4

Joseph W. Doherty
Hall of Fame
Hall of Fame

Do you know how, and can you, logon to the device?  Via the console or a telnet session?

If you know how to and can access the device, can you list the configuration?  Can you "see" an existing port that's like what you want the new port to be?

 

I do know how, and can logon to the device. I do know how to go into enable mode, and configure mode to enable/disable port security. However, that is the extent of my knowledge on this topic. If I knew how to list the configuration I would be able to determine an existing port, and what the new port should look like.

You obviously need to know the Port ID of the port you are trying to configure, so you need to know if it is Port 1 on the Switch or Port 26 for example. 

The following show command will list all the interfaces on the switch:

#show interface status

You should be able to get the exact port name from the command above.
If you know its Port 26 on the switch, you may find the actual Port name is Fa1/0/26.

Anyway, once you have this its fairly easy to add it to a Vlan:

#conf t
(config)#interface fa1/0/26
(config-if)#switchport access vlan 50
(config-if)#no shut

I have chosen Vlan 50 above but this needs to be the relevant Vlan ID you want to put the port into.

A good command to show the actual configuration of a port is:

#show run interface fa1/0/26

Thanks

That worked perfectly. Thank you!

Review Cisco Networking for a $25 gift card