A network administrator needs to create a new VLAN named 'VOICE' with ID 20 on a fresh Cisco Catalyst switch and manually assign interface FastEthernet 0/1 as an active access port belonging to this VLAN. Place the Cisco IOS CLI commands in the exact correct sequence required to perform this complete configuration from privileged EXEC mode.
- 1configure terminal
- 2vlan 20
- 3name VOICE
- 4interface fastethernet 0/1
- 5switchport mode access
- 6switchport access vlan 20
Cevap
The correct operational order begins by entering global configuration mode (configure terminal), creating the VLAN (vlan 20), naming the VLAN (name VOICE), entering interface mode (interface fastethernet 0/1), explicitly setting the link to access mode (switchport mode access), and finally binding the port to the VLAN (switchport access vlan 20).
Cisco IOS configuration follows a strict modal hierarchy. The administrator must first enter global configuration mode (`configure terminal`), instantiate VLAN 20 (`vlan 20`), name it while in `config-vlan` sub-mode (`name VOICE`), navigate to the desired interface (`interface fastethernet 0/1`), set the operational mode (`switchport mode access`), and assign the access VLAN (`switchport access vlan 20`).
Adım Adım Çözüm
Anahtar Kavram
Cisco IOS CLI Configuration Hierarchy for VLAN Creation and Access Port Binding