You need to configure SwitchC so that Hosts H1 and H2 c…

CORRECT TEXT
You have been tasked with configuring multilayer SwitchC, which has a partial configuration and has been attached to RouterC as shown in the topology diagram.
You need to configure SwitchC so that Hosts H1 and H2 can successfully ping the server S1. Also SwitchC needs to be able to ping server S1.
Due to administrative restrictions and requirements you should not add/delete vlans or create trunk links. Company policies forbid the use of static or default routing.
All routes must be learned via EIGRP 65010 routing protocol.
You do not have access to RouteC. RouterC is correctly configured. No trunking has been configured on RouterC.
Routed interfaces should use the lowest host on a subnet when possible. The following subnets are available to implement this solution:
10.10.10.0/24
190.200.250.32/27
190.200.250.64/27

Hosts H1 and H2 are configured with the correct IP address and default gateway.
SwitchC uses Cisco as the enable password.
Routing must only be enabled for the specific subnets shown in the diagram.
Note: Due to administrative restrictions and requirements you should not add or delete VLANs, changes VLAN port assignments or create trunks. Company policies
forbid the use of static or default routing. All routes must be learned via the EIGRP routing protocol.

CORRECT TEXT
You have been tasked with configuring multilayer SwitchC, which has a partial configuration and has been attached to RouterC as shown in the topology diagram.
You need to configure SwitchC so that Hosts H1 and H2 can successfully ping the server S1. Also SwitchC needs to be able to ping server S1.
Due to administrative restrictions and requirements you should not add/delete vlans or create trunk links. Company policies forbid the use of static or default routing.
All routes must be learned via EIGRP 65010 routing protocol.
You do not have access to RouteC. RouterC is correctly configured. No trunking has been configured on RouterC.
Routed interfaces should use the lowest host on a subnet when possible. The following subnets are available to implement this solution:
10.10.10.0/24
190.200.250.32/27
190.200.250.64/27

Hosts H1 and H2 are configured with the correct IP address and default gateway.
SwitchC uses Cisco as the enable password.
Routing must only be enabled for the specific subnets shown in the diagram.
Note: Due to administrative restrictions and requirements you should not add or delete VLANs, changes VLAN port assignments or create trunks. Company policies
forbid the use of static or default routing. All routes must be learned via the EIGRP routing protocol.

Answer: \>ipconfig

Explanation:
There are two ways to configure interVLAN routing in this case:
+ Use RouterC as a “router on a stick” and SwitchC as a pure Layer2 switch. Trunking must be established between RouterC and SwitchC.
+ Only use SwitchC for interVLAN routing without using RouterC, SwitchC should be configured as a Layer 3 switch (which supports ip routing function as a router).

No trunking requires. The question clearly states “No trunking has been configured on RouterC” so RouterC does not contribute to interVLAN routing of hosts H1 &
H2 -> SwitchC must be configured as a Layer 3

switch with SVIs for interVLAN routing.
We should check the default gateways on H1 & H2. Click on H1 and H2 and type the “ipconfig” command to get their default gateways.
We will get the default gateways as follows:
Host1:
+ Default gateway: 190.200.250.33
Host2:
+ Default gateway: 190.200.250.65
Now we have enough information to configure SwitchC (notice the EIGRP AS in this case is 650) Note: VLAN2 and VLAN3 were created and gi0/10, gi0/11
interfaces were configured as access ports so we don’t need to configure them in this sim.
SwitchC# configure terminal
SwitchC(config)# int gi0/1
SwitchC(config-if)#no switchport -> without using this command, the simulator does not let you assign IP address on Gi0/1 interface.
SwitchC(config-if)# ip address 10.10.10.2 255.255.255.0 ->RouterC has used IP 10.10.10.1 so this is the lowest usable IP address.
SwitchC(config-if)# no shutdown
SwitchC(config-if)# exit
SwitchC(config)# int vlan 2
SwitchC(config-if)# ip address 190.200.250.33 255.255.255.224 SwitchC(config-if)# no shutdown
SwitchC(config-if)# int vlan 3
SwitchC(config-if)# ip address 190.200.250.65 255.255.255.224 SwitchC(config-if)# no shutdown
SwitchC(config-if)#exit
SwitchC(config)# ip routing (Notice: MLS will not work without this command) SwitchC(config)# router eigrp 65010
SwitchC(config-router)# network 10.10.10.0 0.0.0.255
SwitchC(config-router)# network 190.200.250.32 0.0.0.31 SwitchC(config-router)# network 190.200.250.64 0.0.0.31 NOTE: THE ROUTER IS CORRECTLY
CONFIGURED, so you will not miss within it in the exam, also don’t modify/delete any port just do the above configuration. Also some reports said the “no autosummary” command can’t be used in the simulator, in fact it is not necessary because the network 190.200.0.0/16 is not used anywhere else in this topology. In
order to complete the lab, you should expect the ping to SERVER to succeed from the MLS, and from the PCs as well.
Also make sure you use the correct EIGRP AS number (in the configuration above it is 650 but it will change when you take the exam) but we are not allowed to
access RouterC so the only way to find out the EIGRP AS is to look at the exhibit above. If you use wrong AS number, no neighbor

relationship is formed between RouterC and SwitchC.
In fact, we are pretty sure instead of using two commands “network 190.200.250.32 0.0.0.31 and “network 190.200.250.64 0.0.0.31 we can use one simple
command “network 190.200.0.0 because it is the nature of distance vector routing protocol like EIGRP: only major networks need to be advertised; even without “no

auto-summary” command the network still works correctly. But in the exam the sim is just a flash based simulator so we should use two above commands, just for
sure. But after finishing the configuration, we can use “show run” command to verify, only the summarized network 190.200.0.0 is shown.



Leave a Reply 4

Your email address will not be published. Required fields are marked *


BRITO

BRITO

New 300-115 Exam Questions and Answers Updated Recently (4/July/2017):

NEW QUESTION 391
In which two ways can a port respond to a port-security violation? (Choose two.)

A. The port enters the en-disabled state.
B. The Security Violation counter is incremented and the port sends an SNMP trap.
C. The Security Violation counter is incremented and the port sends a critical syslog message to the console.
D. The port triggers an EEM script to notify support staff and continues to forward traffic normally.
E. The port immediately begins to drop all traffic.
F. The port enters the shutdown state.

Answer: AF

NEW QUESTION 392
Which three functions does Dynamic ARP Inspection perform with invalid IP-to MAC address bindings? (Choose three.)

A. accepts
B. deletes
C. discards
D. bypasses
E. intercepts
F. logs

Answer: CEF

NEW QUESTION 393
Which two statements about 802.1Q are true? (Choose two.)

A. It encapsulates the original Ethernet frame and adds a VLAN identifier.
B. It increases the maximum size an Ethernet frame to 1094 bytes.
C. It is a Cisco proprietary protocol.
D. When It is enabled, it forces a recalculation of the frame check sequence field.
E. It supports 8-byte VLAN identifiers.
F. It adds a 32-bit field to the Ethernet frame between the source MAC address and length fields.

Answer: DF

NEW QUESTION 394
A physical switch port is part of an EtherChannel group. What happenes while the same port configured as a SPAN destination?

A. The port forwards traffic in the EtherChannel group and acts as a SPAN source simultaneously.
B. The port is removed from the EtherChannel group.
C. The port is put in the errdisabled state and can only be reenabled manually.
D. The operation is not allowed as an EtherChannel member cannot be a SPAN source port.

Answer: D

NEW QUESTION 395
Which two statements about CDP are true? (Choose two.)

A. CDP uses a TLV to advertise the native VLAN
B. CDP is not supported with SNMP
C. CDP is supported on Frame Relay sub interfaces.
D. CDP runs on OSI layer 2
E. CDP runs on OSI layer 1

Answer: AC

NEW QUESTION 396
Which two combinations of Ether Channel modes support the formation of an EtherChannel? (Choose two.)

A. desirable, passive
B. desirable, desirable
C. active, passive
D. passive, passive
E. active, desirable

Answer: BC

NEW QUESTION 397
……

P.S. These New 300-115 Exam Questions Were Just Updated From The Real 300-115 Exam, You Can Get The Newest 300-115 Dumps In PDF And VCE From — http://www.passleader.com/300-115.html (401q VCE and PDF)

Good Luck!

SAMI

SAMI

New 300-115 Exam Questions Updated Recently (15/Aug/2017):

NEW QUESTION 401
Which two authentication types does VRRP support? (Choose two.)

A. Plain-text
B. CHAP
C. PAP
D. 802.1X
E. MD5

Answer: AE

NEW QUESTION 402
Which two limitations of LOCAL SPAN are true? (Choose two.)

A. The source and destination ports must reside in the same switch or switch stack.
B. It can monitor only traffic that ingresses or egresses on the source interface or VLAN.
C. A SPAN session can support multiple destination ports only if they are on the same VLAN.
D. EACH SPAN session supports only one source VLAN or interface.
E. A switch can support only one local SPAN session at a time.

Answer: AE

NEW QUESTION 403
Which Statement about the default SWITCH Database Management Template is true?

A. Template disables routing and supports the maximum number of unicast MAC addresses.
B. Template maximizes system resources for access control lists.
C. Template maximizes system resources for unicast routing.
D. Template gives balance to all functions.

Answer: D
Explanation:
Default – The default template gives balance to all functions.

NEW QUESTION 404
Which results happens when a non-trunking port that is configured with BPDU guard is connected to a device that is transmitting?

A. The port is moved into the spanning-tree blocking state.
B. There port is error-disabled.
C. A routing loop can occur on the network.
D. The port transitions to the connected state.

Answer: B

NEW QUESTION 405
Which two settings are the parts of a Default LLDP configuration? (Choose two.)

A. The LLDP hold time is 60 seconds.
B. The LLDP global state is Disabled.
C. The LLDP reinitialisation delay is 5 seconds.
D. The LLDP interface state is Enabled.
E. The LLDP timer is 60 seconds.

Answer: BD
Explanation:
Table 4 LLDP Default Configuration:
LLDP global state = Disabled.
LLDP interface state = Enabled for both transmit and receive operations when LLDP is globally enabled.

NEW QUESTION 406
……

NEW QUESTION 407
Which two statements about GLBP are true? (Choose two.)

A. The AVF responds to ARP request for the virtual IP address.
B. LAN client traffic is handled by the active AVF only.
C. The AVG assigns virtual MAC addresses to GLBP group members.
D. The AVF assigns virtual MAC addresses to GLBP group members.
E. The AVG responds to ARP requests for the Virtual IP address.

Answer: CE
Explanation:
The AVG assigns a virtual MAC address to each member of the GLBP group. The AVG is responsible for answering Address Resolution Protocol (ARP) requests for the virtual IP address.

NEW QUESTION 408
Which option is a CISCO recommended RSPAN configuration practice?

A. Define RSPAN VLAN before configuring an RSPAN source and destination session.
B. Assign access ports to an RSPAN VLAN like any other campus VLAN.
C. Use a different RSPAN VLAN for each session if configuring RSPAN on multiple switches.
D. Use only one destination port for EACH RSPAN Session.

Answer: A

NEW QUESTION 409
A network engineer wants to ensure Layer 2 isolation of customer traffic using a private VLAN. Which configuration must be configured before the VLAN is configured?

A. Ensure all switches are configured as VTP server mode.
B. Configure VTP Transparent mode.
C. Enable VTP version 3.
D. Disable VTP and manually assign VLANS.

Answer: B

NEW QUESTION 410
……

P.S. These New 300-115 Exam Questions Were Just Updated From The Real 300-115 Exam, You Can Get The Newest 300-115 Dumps In PDF And VCE From — https://www.passleader.com/300-115.html (418q VCE and PDF)

Good Luck!