A network administrator needs to create VLAN 60 named DEV_TEAM on a Cisco Catalyst switch and configure interface GigabitEthernet0/15 as a static access port assigned to that VLAN. Place the Cisco IOS CLI commands in the correct chronological sequence to perform this configuration starting from Privileged EXEC mode.
- 1configure terminal
- 2vlan 60
- 3name DEV_TEAM
- 4interface GigabitEthernet0/15
- 5switchport mode access
- 6switchport access vlan 60
Answer
The correct operational sequence is: configure terminal -> vlan 60 -> name DEV_TEAM -> interface GigabitEthernet0/15 -> switchport mode access -> switchport access vlan 60.
To configure a new VLAN with a specific name and assign a port to it, the process must follow Cisco IOS hierarchy: first enter global configuration mode ('configure terminal'), instantiate the VLAN and enter VLAN sub-mode ('vlan 60'), set the VLAN name ('name DEV_TEAM'), enter interface sub-mode ('interface GigabitEthernet0/15'), set the port mode ('switchport mode access'), and assign the access VLAN ('switchport access vlan 60').
Step-by-Step Solution
Key Concept
Cisco IOS sequence for creating VLANs, configuring VLAN names, and assigning static access interfaces