Skip to main content

Drag and Drop Questions

Question 1
Drag the security feature on the left to the specific security risks they help protect against on the right. (Not all options are used.)

image


Answer :

image




Question 2
Routing has been configured on the local router with these commands:

Local(config)#ip route 0.0.0.0 0.0.0.0 192.168.1.1
Local(config)#ip route 10.1.0.0 255.255.255.0 192.168.2.2
Local(config)#ip route 10.1.0.0 255.255.0.0 192.168.3.3

Drag each destination IP address on the left to its correct next hop address on the right


image

Answer:

image




Question 3
The left describes the types of cables, while the right describes the purposes of the cables.
Drag the items on the left to the proper locations. (Not all items can be used.)


image


Answer:

image



Question 4
Drag each category on the left to its corresponding router output on the right. Each router output line is in the result of a show ip interface command. (Not all categories are used.)

image


Answer:

image




Question 5
Drag the Cisco default administrative distance to the appropriate routing protocol or route (Not all options are used.)



image


Answer:

image

Comments

  1. Can please explain Q2?

    ReplyDelete
  2. Q2, following the mask in each static route:
    10.1.0.x go to 192.168.2.2 (next hop)
    10.1.x.x go to 192.168.3.3
    x.x.x.x go to 192.168.1.1

    A little confusing because 10.1.0.x is into 10.1.x.x, but also in x.x.x.x
    but the router will choise the IP closed to the network part.

    ReplyDelete
  3. can any1 explain how Q2.???its nt completely understood??

    ReplyDelete
  4. Remember the routing table process more specific routes first. Another way is to think that the routing table process routes with more bits in the network part of the address first. So a /32 will be process before a /31 and a /31 before a /30 and …
    R1(config)# ip route 0.0.0.0 0.0.0.0 192.168.1.1
    R1(config)# ip route 10.1.0.0 255.255.255.0 192.168.2.2
    R1(config)# ip route 10.1.0.0 255.255.0.0 192.168.3.3
    So when these routes get put in to the routing table more specific routes get processed first. So what you need to do is look at the three routes and go okay what is my most specific.
    In this case it will be the ip route 10.1.0.0 255.255.255.0 192.168.2.2 so anything in then 10.1.0.X/24 network will go to 192.168.2.2.
    Then work your way out so the next least specific route is the ip route 10.1.0.0 255.255.0.0 192.168.3.3 which is saying anything to the 10.1.X.X/16 network goes to 192.168.3.3 So in this case it will be anything that is in 10.1.X.X/16 but isn’t in 10.1.0.X/24 (because we have a more specific route) goes into this box
    Finally you have your default route ip route 0.0.0.0 0.0.0.0 192.168.1.1 which is saying anything not listed needs to go to me so put your remaining entries into this box.

    ReplyDelete
  5. It's vital to visit all trial tests and examinations before end of the year tests. Understudies all the time don't see all reality of the outcomes and the impact on their future. They should read all conceivable rating of Grademiners.com and utilize all techniques to set themselves up.

    ReplyDelete
  6. can you explain Q4

    ReplyDelete
  7. I have read this post twice and I still can not understand what it is about. I would be very grateful if someone explained me. Thank you.

    ReplyDelete
  8. It is worth mentioning that how I aced my exam within a short time with the help of real 350-080 exam dumps. It is the most compact dumps material among all I ever used for my IT exam preparation. I will strongly suggest the IT students to go for their exam under the guidance of experts working at DumpsSure.com.

    ReplyDelete

Post a Comment

Popular posts from this blog

Cisco Packet Tracer Multi User Connection

Multiuser communication allows multiple point-to-point (peer) connections between multiple instances of Packet Tracer. By allowing communication between Packet Tracer instances, a new door has been opened to a fun, interactive, social, collaborative, and competitive learning environment. Instructors will now be able to create a variety of activities for students to learn in groups that will facilitate greater social interaction between students. Students will benefit from this environment by working together to solve problems and share ideas. Both students and teachers should take full advantage that Multiuser will offer in their learning environment. Technical Information Communicates between instances using PTMP. PTMP is TCP based. By default, uses TCP port 38000, is customizable, and each new instances on the same PC will use the next available port. On by default. UPnP will attempt to establish port forwarding to facilitate home networks. All network co...

Access Control List (ACL) Simlet

An administrator is trying to ping and telnet from Switch to Router with the results shown below: For this question we only need to use the show running-config command to answer all the questions below: Router>enable Router#show running-config   Question 1 Which will fix the issue and allow ONLY ping to work while keeping telnet disabled? A. Correctly assign an IP address to interface fa0/1 B. Change the ip access-group command on fa0/0 from “in” to “out” C. Remove access-group 106 in from interface fa0/0 and add access-group 115 in. D. Remove access-group 102 out from interface s0/0/0 and add access-group 114 in E. Remove access-group 106 in from interface fa0/0 and add access-group 104 in Answer : E Explanation: The question was not about FTP so skip line #1 and line #2. The line #3 denies telnet traffic and line #4 permits icmp-echo traffic. L...

Host A pings interface S0/0 on router 3. What is the TTL value for that ping?

Refer to the exhibit. Host A pings interface S0/0 on router 3. What is the TTL value for that ping? A. 252 B. 253 C. 254 D. 255 Answer : B Explanation: The TTL or Time-To-Live gives you an indication of the number of routers between the source and destination. The TTL is used to prevent an IP packet from looping inside an IP network and causing a network meltdown. The initial TTL packet value for an IP packet is 255 and then it is decremented by 1 each time it encounters a router. When this value reaches 0, the packet is discarded by a router. The TTL value is contained in each IP packet including ICMP packets. The TTL value given by the ping command is in fact the TTL value of an echo_response packet. By default, Windows will decrease the TTL by 128 and Ubuntu Linux by 192. The above the exact topology of this questions. I used 10.0.0.1 for Host A’s IP address and 12.0.0.2 for R3 S0/0’s IP address. All router has been config...