Link to home
Start Free TrialLog in
Avatar of Bob Brown
Bob Brown

asked on

Cisco no shut

On a Cisco switch what is the best way to tell if a port or interface is enabled or disabled by using no shut pr shutdown.

Thanks
ASKER CERTIFIED SOLUTION
Avatar of Sandeep Gupta
Sandeep Gupta
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Fastest way typically to find Admin down interfaces is to use commands:
show ip interface brief
interface is shut if Administratively Down can be seen in status.
Status
Administratively Down         The shutdown command is issued on interface
show interface status
Status
Disabled       The shutdown command is issued on interface

if you have huge output you can use REGEX to easily spot shut interfaces, for example:
show ip interface brief | i admin
show interface status | i disabled