Exam 200-301 All QuestionsBrowse all questions from this exam
Question 1258

SIMULATION

-

Guidelines

-

This is a lab item in which tasks will be performed on virtual devices.

• Refer to the Tasks tab to view the tasks for this lab item.

• Refer to the Topology tab to access the device console(s) and perform the tasks.

• Console access is available for all required devices by clicking the device icon or using the tab(s) above the console window.

• All necessary preconfigurations have been applied.

• Do not change the enable password or hostname for any device.

• Save your configurations to NVRAM before moving to the next item.

• Click Next at the bottom of the screen to submit this lab and move to the next question.

• When Next is clicked, the lab doses and cannot be reopened.

Topology

-

Tasks

-

R1 and R2 are pre-configured with all the necessary commands. All physical cabling is in place and verified. Connectivity for PC1 and PC2 must be established to the switches; each port must only allow one VLAN and be operational.

1. Configure SW-1 with VLAN 15 and label it exactly as OPS

2. Configure SW-2 with VLAN 66 and label it exactly as ENGINEERING

3. Configure the switch port connecting to PC1

4. Configure the switch port connecting to PC2

5. Configure the E0/2 connections on SW-1 and SW-2 for neighbor discovery using the vendor-neutral standard protocol and ensure that E0/0 on both switches uses the Cisco proprietary protocol

    Correct Answer:

Discussion
CertBuster

Given answers are correct; no objections. Question is slightly ambiguous as to if CDP has to be disabled on the LLDP interfaces and vice versa. If not, technically just issuing "lldp run" on both switches is sufficient to complete the task, since CPD will be running by default. Better to be safe though.

AbdullahMohammad251

CDP is enabled by default on switches and routers. CDP is enabled globally on all interfaces by default, this means that we don't need to use "cdp enable" command to enable it on the interface. LLDP is disabled by default on all interfaces. LLDP run command enables LLDP but it doesn't we have to manually enable it on each interface using "lldp transmit" and "lldp receive" commands.

JunsK1e

Solution's well explained!

bymrdas

----------------SW-1-------------- Task1 vlan 15 name OPS Task3 interface etherne0/1 switchport mode access switchport access lan 15 Task5 lldp run interface ethernet 0/2 lldp transmit lldp receive no cdp enable cdp run interface ethernet 0/0 cdp enable no lldp transmit no lldp receive switchport trunk encapsulation isl switchport mode trunk exit wr -------------SW-2------------------ Task2 vlan 66 name ENGINEERING Task 4 interface etherne0/1 switchport mode access switchport access lan 66 Task5 lldp run interface ethernet 0/2 lldp transmit lldp receive no cdp enable cdp run interface ethernet 0/0 cdp enable no lldp transmit no lldp receive switchport trunk encapsulation isl switchport mode trunk exit wr

bymrdas

Guys, I know that trunk mode is not necessary, as it is not part of any of the tasks. ----------------SW-1-------------- Task1 vlan 15 name OPS Task3 interface etherne0/1 switchport mode access switchport access lan 15 Task5 lldp run interface ethernet 0/2 lldp transmit lldp receive no cdp enable cdp run interface ethernet 0/0 cdp enable no lldp transmit no lldp receive exit wr -------------SW-2------------------ Task2 vlan 66 name ENGINEERING Task 4 interface etherne0/1 switchport mode access switchport access lan 66 Task5 lldp run interface ethernet 0/2 lldp transmit lldp receive no cdp enable cdp run interface ethernet 0/0 cdp enable no lldp transmit no lldp receive exit wr

SeMo0o0o

Task 1: Sw1(config)#vl 15 Sw1(config-vlan)#name OPS Task 2: Sw2(config)#vl 66 Sw2(config-vlan)#na ENGINEERING Task 3: Sw1(config)#in fa0/1 Sw1(config-if)#no sh Sw1(config-if)#sw mo acc Sw1(config-if)#sw acc vl 15 Task 4: Sw2(config)#in fa0/1 Sw2(config-if)#no sh Sw2(config-if)#sw mo acc Sw2(config-if)#sw acc vl 66 Task 5 SW1 & SW2: Switch(config)#lldp run Switch(config)#in e0/2 Switch(config-if)#no cdp enable Switch(config-if)#lldp transmit Switch(config-if)#lldp receive Switch(config)#in e0/0 Switch(config-if)#no lldp transmit Switch(config-if)#no lldp receive Switch(config-if)#cdp enable Switch(config-if)#sw tr en isl Switch(config-if)#sw mo tr end copy r st

86a50a6

shouldn't we use the no cdp enable command on the interfaces towards the routers since cisco is asking to enable LLDP for these interfaces?

KuyaErik101

Correct