Week 3 Cisco Switching Worksheet
.docx
keyboard_arrow_up
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
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
Related Questions
A merchant uses the e-commerce platform by logging in the platform with username (merchant_email) and password (merchant_password).
Construct code segment to illustrate the change of application’s state for log in and log out using session through controller routes of the login logic. While merchant is in “logged in” state, merchant will be redirected to homepage and login page if the merchant is in “logged out” state.
arrow_forward
How does a server know that one of his remote objects provided by him is no longer used by clients and can be collected? How does Java RMI handle this problem and what alternatives are there?
What is the purpose of an Interface Definition Language? Why does CORBA not just use the Java interface construct?
Two remote objects are related and should be updated in one operation. What kind of service do you need for this if you assume that both objects can be on different systems and that multiple operations can happen concurrently?
The Lookup operation performs a single-level lookup, returning the Unique File Identifier (UFID) corresponding to a given simple name in a specified directory. What is Network File System deviate from one-copy file update semantics? Why should UFID be unique across all possible file systems?
Write a simple java program to implement RMI.
arrow_forward
Computer Science
C programming
Develop a proxy HTTP server that can accept HTTP requests from clients and convert them to HTTPS request to the web server.
The HTTP request can be filtered based on an access control list.
The requests can be generated by any web client, such as the curl command or a web browser.
the proxy converts plain text HTTP requests from a client to HTTPS requests and then returns the responses to the client.
Main objective is to create a proxy HTTP server that converts cleartext HTTP requests from clients to HTTPS requests to servers and vice versa for the responsesresponses.
arrow_forward
What is the purpose of the remote interface when implementing RMI, explain the requirements that should be satisfied by the of Interface?
arrow_forward
Today I was working with the singleEmailMessage class of
salesforce and I want to set a default Email address for the
same use case.
Can you please suggest how I can do this task and get this issue resolved
I have come to know to use org-wide Address. Please brief
what is about it. both singleEmailMessage class and org wide
address. Not the coding part just tell in bried
arrow_forward
In this assignment, you will develop a simple Web server in Python that is capable of processing only one request. Specifically, your Web server will (i) Create a connection socket when contacted by a client (browser) (ii) Receive the HTTP request from this connection(iii) Parse the request to determine the specific file being requested(iv) Get the requested file from the server’s file system(v) Create an HTTP response message consisting of the requested file preceded by header lines(vi) Send the response over the TCP connection to the requesting browser. If a browser requests a file that is not present in your server, your server should return a “404 Not Found” error message. Your job is to code the steps above, run your server, and then test your server by sending requests from browsers running on different hosts. If you run your server on a host that already has a Web server running on it, then you should use a different port than port 80 for your Web server. Make sure to test your…
arrow_forward
n this assignment, you will develop a simple Web server in Python that is capableof processing only one request. Specifically, your Web server will(i) Create a connection socket when contacted by a client (browser)(ii) Receive the HTTP request from this connection(iii) Parse the request to determine the specific file being requested(iv) Get the requested file from the server’s file system(v) Create an HTTP response message consisting of the requested filepreceded by header lines(vi) Send the response over the TCP connection to the requesting browser.If a browser requests a file that is not present in your server, your server shouldreturn a “404 Not Found” error message.Your job is to code the steps above, run your server, and then test your server bysending requests from browsers running on different hosts. If you run your serveron a host that already has a Web server running on it, then you should use a differentport than port 80 for your Web server. Make sure to test your program…
arrow_forward
i have an assignement please provide the answer as soon as possible..
arrow_forward
Please build a web server on your Raspbery Pi virtual host and publish a dynamic website that shows the characteristics of your virtual system and data about you as a current user i.e. Web page with information about the version of the operating system, what modules are configured and working, which interfaces are included (HDMI, USB, etc.), user name, time login etc. (at least 6 parameters).
Complete the web page with a survey for the loT class!
You have complete freedom for a design of the web page!
arrow_forward
Can someone help me with the following, it's revision for an exam I'm doing. If your explaining it could you please provide detailed steps of why you did what you did so I know how to do it if it comes up in the real thing!
Thank you so much! :)
An IT administrator is interested in studying server traffic. He believes that the time (inminutes) between requests being sent to a server can be well modelled using a Weibulldistribution with parameters α = 2 and β = 1
b) The median arrival time is defined to be the time for which the probability of beingless than this value is 0.5. Calculate the median time between requests
arrow_forward
1 . One of the responsibilities of the Controller in MVC is to Select proper Models for Views
True
False
2.
When MVC is applied to a Web service only, the Controller MVC component is present.
True
False
3.
Web services serve their data to a browser.
True
False
4.
One of the responsibilities of the Controller in MVC is to Displays data to the user
True
False
5.
With Web API controllers a route like /home/index tells us the Controller class name and the action method name.
True
False
6.
The most commonly used format for modern Web Services is JSON.
True
False
7.
One of the responsibilities of the Controller in MVC is to Connect to the database engine
True
False
8.
It is possible for return type in the asynchronous method to be a void .
True
False
arrow_forward
You are required to write a Spring Boot + SpringMVC based application that handles a sample request given below and returns the additional parameter sent as part of the request:
http://localhost:8080/greeting?name=ali&salary=35000
The request should hit a MVC based Controller within your spring application (for get request type) and return a view (greeting the user) that may be JSP of Thymeleaf templating engine.
arrow_forward
What actually serves as the remote interface's function in the RMI implementation? What prerequisites must be satisfied in order to utilize the interface?
arrow_forward
Hi please assist
thanks
arrow_forward
Computer Science
Control an LED Remotely using TCPDUMP
Must be implemented on the RPI 3B+ using a shell script.
-In this project, write a shell script that when the PI receives a ping command with a specific byte pattern then it must turn on or off an LED.
For example, if the ping command’s pattern is “aa ae” then the PI must turn on the LED. If the ping command’s pattern is “ab ae” then the PI must turn off the LED. If the ping command’s pattern is anything else, then the PI should do nothing and only print on the terminal that a PING message was just received.
arrow_forward
Please write the code in the nodejs and use the localhost server to show the current date and time by creating a function.
Please write the code only in Node js
the address: -
http://localhost:8080/v
Please write the code in the nodejs and use the localhost server to show the current date and time by creating a function.
Please write the code only in Node js
the address: -
http://localhost:8080/v
Please write the code in the nodejs and use the localhost server to show the current date and time by creating a function.
Please write the code only in Node js
the address: -
http://localhost:8080/
arrow_forward
Q1
arrow_forward
A company has implemented a discretionary access control system for important documents and programs on a shared Linux server. Figure 1 shows the current implementation of the DAC system. It only applies to the directory /opt/company (you can ignore all files/directories that are not within this directory). The list of users is shown in the output from the firstls command; the members of each group is shown in the output of the tail command; the permissions are shown in the output of the second ls command.
Assume the files are the objects, the subjects are the five users and there are four access rights: own, read, write and execute. Refer to Figure 4.2 and Table 2 in the textbook and complete the following subquestions
I. Draw the Access Control Lists that illustrate the implementation on the Linux server; II. Draw the Capability Lists that illustrate the implementation on the Linux server;
III. Build the Authorization Table that illustrate the implementation on the Linux server.
arrow_forward
If the mode of an interface is Full-
duplex, what does it mean?
O a. Delay in sending or receiving
data
O b. Receive and send data at
same time
O c. There is no such feature called
Full-duplex
o d. Receive and send data at
different times
arrow_forward
The URL Connection class can be used to read and write data:
Select one:
a.To the specified resource referred by the HttpResponse and the URL
b.To the specified resource referred by the URL
c.To the specified resource referred by the HttpServer and the URL
d.To the specified resource referred by the ServerSocket and the URL
arrow_forward
Function: A client can chat with the server, with input in the screen, and output the other side's replies. No GUI needed.
Keypoints: TCP socket is used for both sides. Both sides open two sockets, one for sending, while the other for receiving.
IN JAVA OR C/C++
with both client code and server code
arrow_forward
An AWS administrator has been given a requirement to configure a notification mechanism for the Developer team for their CICD pipeline. This notification
need to be customized with a particular format and should not contain the default AWS formatted text.
Which of the following is the correct method to implement the above requirement?
Use SNS APIS to customize the message output to send the custom data to the recipient
Use SNS to trigger a Lambda function which can extract the required values and construct a custom message, Use SES to send the customized
message
Use SES directly as the notification mechanism which can be customized based on standard Email templates
O Use SNS to trigger an SES API which can extract the required values from message and send custom emal
arrow_forward
If we want the system give a signal to the client when a message from the server is received, what should the program do? Indicate the advantages of using the Observable pattern and Adapter pattern in this design.
arrow_forward
What is the aim of the remote interface while
implementing RMI? What requirements must the
interface satisfy?
arrow_forward
SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education
Related Questions
- A merchant uses the e-commerce platform by logging in the platform with username (merchant_email) and password (merchant_password). Construct code segment to illustrate the change of application’s state for log in and log out using session through controller routes of the login logic. While merchant is in “logged in” state, merchant will be redirected to homepage and login page if the merchant is in “logged out” state.arrow_forwardHow does a server know that one of his remote objects provided by him is no longer used by clients and can be collected? How does Java RMI handle this problem and what alternatives are there? What is the purpose of an Interface Definition Language? Why does CORBA not just use the Java interface construct? Two remote objects are related and should be updated in one operation. What kind of service do you need for this if you assume that both objects can be on different systems and that multiple operations can happen concurrently? The Lookup operation performs a single-level lookup, returning the Unique File Identifier (UFID) corresponding to a given simple name in a specified directory. What is Network File System deviate from one-copy file update semantics? Why should UFID be unique across all possible file systems? Write a simple java program to implement RMI.arrow_forwardComputer Science C programming Develop a proxy HTTP server that can accept HTTP requests from clients and convert them to HTTPS request to the web server. The HTTP request can be filtered based on an access control list. The requests can be generated by any web client, such as the curl command or a web browser. the proxy converts plain text HTTP requests from a client to HTTPS requests and then returns the responses to the client. Main objective is to create a proxy HTTP server that converts cleartext HTTP requests from clients to HTTPS requests to servers and vice versa for the responsesresponses.arrow_forward
- What is the purpose of the remote interface when implementing RMI, explain the requirements that should be satisfied by the of Interface?arrow_forwardToday I was working with the singleEmailMessage class of salesforce and I want to set a default Email address for the same use case. Can you please suggest how I can do this task and get this issue resolved I have come to know to use org-wide Address. Please brief what is about it. both singleEmailMessage class and org wide address. Not the coding part just tell in briedarrow_forwardIn this assignment, you will develop a simple Web server in Python that is capable of processing only one request. Specifically, your Web server will (i) Create a connection socket when contacted by a client (browser) (ii) Receive the HTTP request from this connection(iii) Parse the request to determine the specific file being requested(iv) Get the requested file from the server’s file system(v) Create an HTTP response message consisting of the requested file preceded by header lines(vi) Send the response over the TCP connection to the requesting browser. If a browser requests a file that is not present in your server, your server should return a “404 Not Found” error message. Your job is to code the steps above, run your server, and then test your server by sending requests from browsers running on different hosts. If you run your server on a host that already has a Web server running on it, then you should use a different port than port 80 for your Web server. Make sure to test your…arrow_forward
- n this assignment, you will develop a simple Web server in Python that is capableof processing only one request. Specifically, your Web server will(i) Create a connection socket when contacted by a client (browser)(ii) Receive the HTTP request from this connection(iii) Parse the request to determine the specific file being requested(iv) Get the requested file from the server’s file system(v) Create an HTTP response message consisting of the requested filepreceded by header lines(vi) Send the response over the TCP connection to the requesting browser.If a browser requests a file that is not present in your server, your server shouldreturn a “404 Not Found” error message.Your job is to code the steps above, run your server, and then test your server bysending requests from browsers running on different hosts. If you run your serveron a host that already has a Web server running on it, then you should use a differentport than port 80 for your Web server. Make sure to test your program…arrow_forwardi have an assignement please provide the answer as soon as possible..arrow_forwardPlease build a web server on your Raspbery Pi virtual host and publish a dynamic website that shows the characteristics of your virtual system and data about you as a current user i.e. Web page with information about the version of the operating system, what modules are configured and working, which interfaces are included (HDMI, USB, etc.), user name, time login etc. (at least 6 parameters). Complete the web page with a survey for the loT class! You have complete freedom for a design of the web page!arrow_forward
- Can someone help me with the following, it's revision for an exam I'm doing. If your explaining it could you please provide detailed steps of why you did what you did so I know how to do it if it comes up in the real thing! Thank you so much! :) An IT administrator is interested in studying server traffic. He believes that the time (inminutes) between requests being sent to a server can be well modelled using a Weibulldistribution with parameters α = 2 and β = 1 b) The median arrival time is defined to be the time for which the probability of beingless than this value is 0.5. Calculate the median time between requestsarrow_forward1 . One of the responsibilities of the Controller in MVC is to Select proper Models for Views True False 2. When MVC is applied to a Web service only, the Controller MVC component is present. True False 3. Web services serve their data to a browser. True False 4. One of the responsibilities of the Controller in MVC is to Displays data to the user True False 5. With Web API controllers a route like /home/index tells us the Controller class name and the action method name. True False 6. The most commonly used format for modern Web Services is JSON. True False 7. One of the responsibilities of the Controller in MVC is to Connect to the database engine True False 8. It is possible for return type in the asynchronous method to be a void . True Falsearrow_forwardYou are required to write a Spring Boot + SpringMVC based application that handles a sample request given below and returns the additional parameter sent as part of the request: http://localhost:8080/greeting?name=ali&salary=35000 The request should hit a MVC based Controller within your spring application (for get request type) and return a view (greeting the user) that may be JSP of Thymeleaf templating engine.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education