100% found this document useful (1 vote)
270 views4 pages

Aruba Lab 3

- Set the switch to factory default settings, navigate the CLI, define a hostname, disable unused interfaces, and save configurations - Explore the CLI, configure the hostname to "TX-Access-1", disable ports 1/1/2 to 1/1/28 and enable port 1/1/3 - Create checkpoints of the running configuration, copy to checkpoints, erase a checkpoint, and restore from a checkpoint

Uploaded by

malek
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
270 views4 pages

Aruba Lab 3

- Set the switch to factory default settings, navigate the CLI, define a hostname, disable unused interfaces, and save configurations - Explore the CLI, configure the hostname to "TX-Access-1", disable ports 1/1/2 to 1/1/28 and enable port 1/1/3 - Create checkpoints of the running configuration, copy to checkpoints, erase a checkpoint, and restore from a checkpoint

Uploaded by

malek
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 4

===================================================================================

===========================
Lab 3: Initial Setup
===================================================================================
===========================
Objectives
After completing this lab, you will be able to:
• Set your gear in factory values
• Navigate through the AOS-CX command line interface (CLI)
• Define a hostname on 6300-A switch
• Disable unused interfaces
• Save device’s configuration and create checkpoints

=======================================================
Task 1: Explore the AOS-CX Switch CLI
=======================================================

===================
6300A
===================

1. Open a console connection to the 6300-A. Login using admin and no password.
2. Hit the [?] key to show the available commands that you can execute in the
current command context.

6300# ?
6300# show ?
6300# disable
6300> ?
6300> enable
6300#
6300# co[tab][tab]
6300# configure
6300(config)# ?
6300(config)# interface 1/1/1
6300(config-if)# ?
6300(config-if)# end
6300#
6300# show history

Using the [CTRL][w] shortcut for removing the word that is preceding the cursor :
6300# show hitory [CTRL][w]
6300# show
6300# show system ?
6300# show system

6300# show system resource-utilization


6300# page
6300# show system resource-utilization
6300# list
6300# show version
6300# show images
6300# show capacities
6300# show interface 1/1/1
6300# show interface 1/1/28
6300# show interface transceiver
=======================================================
Task 2: Configure Initial Settings
=======================================================

6300# show running-config


6300# configure terminal
6300(config)# hostname TX-Access-1

===================
Access-1
===================
4. Apply the console session timeout to 1 day (1440 minutes) to prevent a logout
during the lab activities.

T11-Access-1(config)# session-timeout 1440

TIP: An alternative method you can use is the next configuration script:
T11-Access1(config)# cli-session
T11-Access1(config-cli-session)# timeout 1440
T11-Access1(config-cli-session)# exit

5. Use “show interface brief” for displaying a table of ports and their more
relevant settings.
T11-Access-1# show interface brief

6. Disable ports 1/1/2 to 1/1/28.


T11-Access-1(config)# interface 1/1/2-1/1/28
T11-Access-1(config-if-<1/1/2-1/1/28>)# shutdown
T11-Access-1(config-if-<1/1/2-1/1/28>)# exit

7. Enable port 1/1/3.


T11-Access-1(config)# interface 1/1/3
T11-Access-1(config-if)# no shutdown
T11-Access-1(config-if)# exit

8. Issue the “show interface brief” command again.


T11-Access-1(config)# show interface brief

9. Display the “event log” in reverse mode.


T11-Access-1(config)# show events -r -n 10

10. Define interface descriptions for port 1/1/1 and 1/1/3. Do not leave interface
1/1/3 yet.
T11-Access-1# configure terminal
T11-Access-1(config)# interface 1/1/1
T11-Access-1(config-if)# description TO_PC-1
T11-Access-1(config-if)# interface 1/1/3
T11-Access-1(config-if)# description TO_PC-3
T11-Access-1(config-if)#
11. Inside of interface 1/1/3 type the “show running-config current-context”
command.
T11-Access-1(config-if)# show running-config current-context

12. Run the “show interface 1/1/3” command followed by “| include Description”.

T11-Access-1(config-if)# end
T11-Access-1# show interface 1/1/3 | include Description

13. Try the same command but use “| begin 3 Interface” instead

T11-Access-1# show interface 1/1/3 | begin 3 Interface


T11-Access-1(config-if)# end

=======================================================
Task 3: Create and Explore Checkpoints
=======================================================

1. Open a console connection to Access-1.

===================
Access-1
===================

T11-Access-1# show checkpoint list


T11-Access-1# write memory
T11-Access-1# show checkpoint list
T11-Access-1# copy running-config checkpoint Lab3
T11-Access-1# show checkpoint list

T11-Access-1# copy running-config checkpoint Lab3_final

T11-Access-1# erase checkpoint Lab3


T11-Access-1# copy running-config checkpoint Lab3_final
T11-Access-1# show checkpoint list all

T11-Access-1# copy checkpoint Lab3_final running-config

You might also like