Простые примеры того, как поднимать и тушить интерфейсы на устройствах CISCO с помощью команд shutdown и no shutdown.
# enable
# configure terminal
(config)# interface FastEthernet 0/1
(config-subif)# no shutdown
(config-subif)# end
# write
Для отображения статуса интерфейса, выполните 'show interfaces status' :
# show interfaces FastEthernet 0/1 status
Port Name Status Vlan Duplex Speed Type
Fa0/1 connected 15 full 100 10/100BaseTX
# enable
# configure terminal
(config)# interface FastEthernet 0/1
(config-subif)# shutdown
(config-subif)# end
# write
Для отображения статуса интерфейса, выполните 'show interfaces status' :
# show interfaces FastEthernet 0/1 status
Port Name Status Vlan Duplex Speed Type
Fa0/1 disabled 15 full 100 10/100BaseTX
Включить Интерфейс на CISCO
Выполните следующие команды для включения интерфейса на свиче или роутере CISCO :# enable
# configure terminal
(config)# interface FastEthernet 0/1
(config-subif)# no shutdown
(config-subif)# end
# write
Для отображения статуса интерфейса, выполните 'show interfaces status' :
# show interfaces FastEthernet 0/1 status
Port Name Status Vlan Duplex Speed Type
Fa0/1 connected 15 full 100 10/100BaseTX
Выключить Интерфейс на CISCO
Выполните следующие команды для выключения интерфейса на свиче или роутере CISCO :# enable
# configure terminal
(config)# interface FastEthernet 0/1
(config-subif)# shutdown
(config-subif)# end
# write
Для отображения статуса интерфейса, выполните 'show interfaces status' :
# show interfaces FastEthernet 0/1 status
Port Name Status Vlan Duplex Speed Type
Fa0/1 disabled 15 full 100 10/100BaseTX