Week 3 Cisco Switching Worksheet

.docx

School

Keiser University *

*We aren’t endorsed by this school

Course

2304

Subject

Computer Science

Date

Dec 6, 2023

Type

docx

Pages

3

Uploaded by dgustasfson2010

Report
Keiser University Week 3 Cisco Switching Worksheet Answer the following : DENNIS GUSTAFSON 1. Write the commands for changing interface fa 0/1 to full duplex 100. Enter global configuration mode. S1# configure terminal Enter interface configuration mode. S1(config)# interface fastethernet 0/1 Configure the interface duplex mode. S1(config-if)# duplex full Configure the interface speed. S1(config-if)# speed 100 Return to privileged EXEC mode. S1(config-if)# end Save the running config to the startup config. S1# copy running-config startup-config 2. Write the commands to create a description of the fa 0/1 interface named “Internet Router Connection”. enable: Enters privileged EXEC mode. configure terminal: Enters global configuration mode. interface FastEthernet0/1: Enters interface configuration mode for FastEthernet0/1. description Internet Router Connection: Sets the description for the interface to "Internet Router Connection." exit: Exits interface configuration mode. write memory: Saves the configuration changes to the startup configuration. 3. Write the commands to erase all content of configuration memory. enable: Enters privileged EXEC mode. erase startup-config: Deletes the contents of the startup configuration, which is where the configuration is stored. You will be prompted to confirm the erasure. Type yes and press Enter. reload: Reloads the device, which will cause it to reboot without loading the startup configuration. 4. Write the commands to enable secret password “cisco”. enable: Enters privileged EXEC mode. configure terminal: Enters global configuration mode. CTS2304C Week 3 Cisco Switching Worksheet Cisco 200-301 Vol. 1
Keiser University Week 3 Cisco Switching Worksheet enable secret cisco: Sets the enable secret password to "cisco". The enable secret password is a more secure method than using enable password. exit: Exits global configuration mode. write memory: Saves the configuration changes to the startup configuration. 5. Write the command lines for assigning the IP Address 192.168.1.10 with subnet 255.255.255.0. enable: Enters privileged EXEC mode. configure terminal: Enters global configuration mode. interface <interface_type> <interface_number>: Enters interface configuration mode for the specific interface. Replace <interface_type> and <interface_number> with the actual interface type and number, for example, GigabitEthernet0/1. ip address 192.168.1.10 255.255.255.0: Assigns the IP address 192.168.1.10 with a subnet mask of 255.255.255.0 to the specified interface. no shutdown: Ensures that the interface is not in a shutdown state, enabling the interface. exit: Exits interface configuration mode. write memory: Saves the configuration changes to the startup configuration. 6. Write the command lines for assigning a default gateway of 192.168.1.1. enable: Enters privileged EXEC mode. configure terminal: Enters global configuration mode. ip route 0.0.0.0 0.0.0.0 192.168.1.1: Sets a default route, where 0.0.0.0 0.0.0.0 represents the destination (any IP address), and 192.168.1.1 is the IP address of the default gateway. exit: Exits global configuration mode. write memory: Saves the configuration changes to the startup configuration. 7. Write the command lines for configuring the clock time zone. enable: Enters privileged EXEC mode. configure terminal: Enters global configuration mode. clock timezone <timezone-name> <offset>: Sets the time zone for the device. Replace <timezone-name> with the name of the time zone (e.g., PST, EST, GMT) and <offset> with the time zone offset in hours from UTC (e.g., -5 for Eastern Standard Time). exit: Exits global configuration mode. write memory: Saves the configuration changes to the startup configuration. 8. Write the command lines for global configuration mode. enable: Enters privileged EXEC mode. configure terminal: Enters global configuration mode. CTS2304C Week 3 Cisco Switching Worksheet Cisco 200-301 Vol. 1
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help