
Disable a Port on Cisco Switch in Cisco Packet Tracer
Cisco Switch by default have all ports enabled (up). If you want to disable a port follow the instructions below.
- Click on the Switch. A popup window will be opened.
- Go to CLI tab in the popup window.
- Click in command box.
- Press “Enter”.
- To enable the switch give give following command:
enable
- To enable configuration mode give following command:
configure terminal
- To access a specific port give following command:
interface fastethernet <PORT NUMBER>
For example for first port:
interface fastethernet 0/1
- To disable the port give following command:
shutdown
- To save the configuration give following command:
do write memory
- To exit the port give the following command
exit
- To exit the configuration mode give following command:
exit
- To exit enable mode give following command:
exit
You are all done!