- (Topic 1)
Refer to the exhibit.
A technician has configured the FastEthernet 0/1 interface on Sw11 as an access link in VLAN 1. Based on the output from the show vlan brief command issued on Sw12, what will be the result of making this change on Sw11?
Correct Answer:
D
VLANs are local to each switch's database, and VLAN information is not passed between switches without implementing VLAN Trunk Protocol (VTP). Trunks carry traffic from all VLANs to and from the switch by default but, can be configured to carry only specified VLAN traffic. Trunk links are required to pass VLAN information between switches. So Sw11 port should be trunk not access port. Additionally, there are no ports assigned to VLAN 1.
- (Topic 5)
Which three statements about HSRP operation are true? (Choose three.)
Correct Answer:
ABF
- (Topic 5)
Which two statistics appear in show frame-relay map output? (Choose two.)
Correct Answer:
:BD
Frame Relay Commands (map-class frame-relay through threshold ecn) http://www.cisco.com/en/US/docs/ios/12_2/wan/command/reference/wrffr4.html#wp102934 3
Examples
The following is sample output from the show frame-relay map command: Router#show frame-relay map Serial 1 (administratively down): ip 10.108.177.177 dlci 177 (0xB1,0x2C10), static, broadcast,
CISCO
TCP/IP Header Compression (inherited), passive (inherited)
- (Topic 6)
When a router undergoes the exchange protocol within OSPF, in what order does it pass through each state?
Correct Answer:
B
Why Are OSPF Neighbors Stuck in Exstart/Exchange State? Reference:
http://www.cisco.com/en/US/tech/tk365/technologies_tech_note09186a0080093f0d.shtml
- (Topic 6)
It has become necessary to configure an existing serial interface to accept a second Frame Relay virtual circuit. Which of the following are required to solve this? (Choose three)
Correct Answer:
BCD
How To Configure Frame Relay Subinterfaces
http://www.orbit-computer-solutions.com/How-To-Configure-Frame-Relay- Subinterfaces.php
Step to configure Frame Relay subinterfaces on a physical interface:
1. Remove any network layer address (IP) assigned to the physical interface. If the physical interface has an address, frames are not received by the local subinterfaces.
2. Configure Frame Relay encapsulation on the physical interface using the encapsulation frame-relay command.
3. For each of the defined PVCs, create a logical subinterface. Specify the port number, followed by a period (.) and the subinterface number. To make troubleshooting easier, it is suggested that the subinterface number matches the DLCI number.
4. Configure an IP address for the interface and set the bandwidth.
5. Configure the local DLCI on the subinterface using the frame-relay interface-dlci command.
Configuration Example: R1>enable R1#configure terminal
R1(config)#interface serial 0/0/0 R1(config-if)#no ip address
R1(config-if)#encapsulation frame-relay R1(config-if)#no shutdown
R1(config-if)#exit
R1(config-subif)#interface serial 0/0/0.102 point-to-point
R1(config-subif)#ip address 192.168.1.245 255.255.255.252
R1(config-subif)#frame-relay interface-dlci 102 R1(config-subif)#end
R1#copy running-config startup-config