成长值: 63730
|
本帖最后由 小乔 于 2022-12-19 21:41 编辑
Lab Objective:
The objective of this lab exercise is to understand how to configure many interfaces that share the same common configuration at the same time without having to do them one at a time
Lab Purpose:
Configuring multiple interfaces on a switch at the same time is a fundamental skill. Some high-end Cisco Catalyst Switches can have in excess of 500 interfaces that may need to be configured almost identically. In such situations, configuring a single interface at a time would not be acceptable. As a Cisco engineer, as well as in the Cisco CCNA exam, you will be expected to know how to configure multiple switch interfaces at the same time using user-defined macros.
Certification Level:
This lab is suitable for CCNA certification exam preparation.
Lab Difficulty:
This lab has a difficulty rating of 4/10.
Readiness Assessment:
When you are ready for your certification exam, you should complete this lab in no more than 5 minutes.
Lab Topology:
You can use any stand-alone (single) switch to complete this lab. This lab is strictly about configuration syntax.
Task 1:
Configure a hostname of your liking on your lab switch, which should have at least 24 ports.
Task 2:
Configure VLAN10 named SALES on the switch and VLAN20 named TECH on the switch.
Task 3:
To simplify configuration tasks, you should create a macro called VLAN_10_Macro for configuring ports FastEthernet0/1 to FastEthernet0/12 that will be in VLAN10 and a macro called VLAN_20_Macro for configuring ports FastEthernet0/13 to FastEthernet0/24 that will be in VLAN20.
NOTE: Because this lab is for practicing macro configuration, do NOT use the interface range command.
Task 4:
Configure interfaces FastEthernet0/1 to 12 and FastEthernet0/13 to 24 in VLAN10 and VLAN20, respectively, using the macro. These ports should be configured as access ports.
Task 5:
Verify your configuration using the appropriate commands in Cisco IOS.
Configuration and Verification
Task 1:
For reference information on configuring hostnames, please refer to earlier labs.
Task 2:
For reference information on configuring standard VLANs, please refer to earlier labs.
Task 3:
Sw1#config t
Enter configuration commands, one per line. End with CTRL/Z.
Sw1(config)#define interface-range VLAN_10_Macro FastEthernet 0/1 - 12
Sw1(config)#define interface-range VLAN_20_Macro FastEthernet 0/13 – 24
Sw1(config)#^Z
Sw1#
Task 4:
Sw1#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Sw1(config)#interface range macro VLAN_10_Macro
Sw1(config-if-range)#switchport mode access
Sw1(config-if-range)#switchport access vlan10
Sw1(config-if-range)#exit
Sw1(config)#interface range macro VLAN_20_Macro
Sw1(config-if-range)#switchport mode access
Sw1(config-if-range)#switchport access vlan20
Sw1(config-if-range)#end
Sw1#
Task 5:
Sw1#show vlan brief
VLAN Name Status Ports
---- ----------------------- --------- -------------------------------
1 default active Gi0/1, Gi0/2
2 VLAN0002 active
10 SALES active Fa0/1, Fa0/2, Fa0/3, Fa0/4
Fa0/5, Fa0/6, Fa0/7, Fa0/8
Fa0/9, Fa0/10, Fa0/11, Fa0/12
20 MANAGERS active Fa0/13, Fa0/14, Fa0/15, Fa0/16
Fa0/17, Fa0/18, Fa0/19, Fa0/20
Fa0/21, Fa0/22, Fa0/23, Fa0/24
[Output Truncated]
来源: CCNA LAB 59: Configuring IOS Device Logging to a SYSLOG Server
来源: CCNA LAB 60: Performing an IOS Upgrade
来源: CCNA LAB 61: Performing an IOS Upgrade Using FTP
来源: CCNA LAB 62: Performing Password Recovery
来源: CCNA LAB 63: Configuring Extended VLANs on Cisco Catalyst Switches
来源: CCNA LAB 64: Changing the Native VLAN and Shutting Down Unused Ports
来源: CCNA LAB 65: Restricting Extended VLANs on Trunks and Changing the VTP Version
来源: CCNA LAB 66: Verifying Spanning Tree Port States on Catalyst Switches
来源: CCNA LAB 67: Configuring Spanning Tree Protocol Root Bridges Manually
来源: CCNA LAB 68: Configuring Spanning Tree Protocol Root Bridges Using the IOS Macro |
|