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

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 closes and cannot be reopened

Topology

-

Tasks

-

R1 has been pre-configured with all the necessary commands. All physical cabling is in place and verified. Connectivity from PC1, PC3, and the Server must be established to the switches, and each port must only allow one VLAN.

1. Configure the VLAN connecting to the switch port for PC3 with the name "SALES"

2. Configure the switch port connecting to Server1

3. Configure the switch port connecting to PC3

4. Ensure R1 discovers SW-1 via the Cisco proprietary neighbor discovery protocol and all other devices on the network are unable to discover SW-1

    Correct Answer:

Discussion
Cobramago

1. sw-2#conf t sw-2(config)#vlan 20 sw-2(config-vlan)#aname SERVER1 sw-2(config-vlan)#exit sw-2(config)#vlan 30 sw-2(config-vlan)#name SALES sw-2(config-vlan)#exit 2. sw-2(config)#interface ETH0/2 sw-2(config-if)#sw-1port mode access sw-2(config-if)#sw-1port access vlan 20 sw-2(config-if)#no sh sw-2(config-if)#exit 3 sw-2(config)#interface ETH0/3 sw-2(config-if)#sw-1port mode access sw-2(config-if)#sw-1port access vlan 30 sw-2(config-if)#no sh sw-2(config-if)#end sw-2#wr 4. sw-1#configure t sw-1(config)#cdp run sw-1(config)#interface fastEthernet 0/1 sw-1(config-if)#cdp enable sw-1(config-if)#no sh sw-1(config)#interface fastEthernet 0/2 sw-1(config-if)#no cdp enable sw-1(config-if)#no sh sw-1(config-if)#end sw-1#wr to end, you can use a show cdp neig in R1 and SW-2

Junior_Network

1) SW2: vlan 30 > name SALES 2) SW2: vlan 20 int e0/2 > sw mo acc > sw acc vlan 20 3) SW2: int e0/3 > sw mo acc > sw acc vlan 30 4) R1: show cdp neig SW1: int e0/1 > no cdp enable int e0/2 > no cdp enable Final: copy running-config startup-config //I'm not tottally sure last command of SW1. I'm not sure it is necassery

Junior_Network

For Last command : '' show cdp'' maybe enough

JulesAZ

clean answer :) have you NOT used the 'no shut' command as the interfaces are in the up state by default on switches?

bymrdas

T1 SW2 vlan 30 name SALES T2 SW2 interface e0/2 switchport mode access switchport access vlan 20 T3 SW2 interface e0/3 switchport mode access switchport access vlan 30 T4 SW1 cdp run interface e0/0 cdp enable interface e0/1 no cdp enable interface e0/2 no cdp enable

picho707

Task 1 SW-2(config)#vlan 30 SW-2(config-vlan)#name SALES Task 2 SW-2(config)#interface gigabitEthernet 0/2 SW-2(config-if)#switchport mode access SW-2(config-if)#switchport access vlan 20 SW-2(config-if)#no shut Task 3 SW-2(config)#interface gigabitEthernet 0/3 SW-2(config-if)#switchport mode access SW-2(config-if)#switchport access vlan 30 SW-2(config-if)#no shut Task 4 SW-1(config)#cdp run SW-1(config)#interface range gigabitEthernet 0/1-48 SW-1(config-if-range)#no cdp enable SW-1#show cdp neighbors Capability Codes: R - Router, T - Trans Bridge, B - Source Route Bridge S - Switch, H - Host, I - IGMP, r - Repeater, P - Phone, D - Remote, C - CVTA, M - Two-port Mac Relay Device ID Local Intrfce Holdtme Capability Platform Port ID R1 Gig 0/0 145 R B Gig 0/0.1

KT_Yu

1. SW-2: vlan 30 name SALES 2. SW-2: switchport mode access switchport access vlan 20 3. SW-3: switchport mode access switchport access vlan 30 4. SW-1: int range e0/1-2 no cdp enable cdp run

Donny2202

so for fa01 i can see people put cdp enable if the question is no devices discovering switch 1 should e0/1 be put as no cdp enable ?