Place the following Cisco IOS configuration commands in the correct order to create VLAN 30, assign it the name 'ENGINEERING', and configure interface GigabitEthernet1/0/15 as a static access port in VLAN 30, starting from privileged EXEC mode (`Switch#`).
- 1`configure terminal`
- 2`vlan 30`
- 3`name ENGINEERING`
- 4`interface GigabitEthernet1/0/15`
- 5`switchport mode access`
- 6`switchport access vlan 30`
Cevap
The correct sequence starts by entering global configuration mode (`configure terminal`), creating and naming the VLAN (`vlan 30` followed by `name ENGINEERING`), navigating to the interface (`interface GigabitEthernet1/0/15`), statically setting access mode (`switchport mode access`), and finally assigning the port to VLAN 30 (`switchport access vlan 30`).
The CLI prompt hierarchy in Cisco IOS enforces a strict order of operations: privileged EXEC mode (`Switch#`) must first transition to global configuration mode (`configure terminal`), followed by entering the VLAN submode (`vlan 30`) to set parameters like `name ENGINEERING`. Once VLAN creation and naming are complete, navigating to interface configuration mode (`interface GigabitEthernet1/0/15`) allows setting the operational mode (`switchport mode access`) and assigning the port membership (`switchport access vlan 30`).
Adım Adım Çözüm
Anahtar Kavram
VLAN Creation and Access Port Assignment in Cisco IOS