Exhibit
R1# show interfaces gigabitethernet 0/0
GigabitEthernet0/0 is down, line protocol is down (notconnect)
Hardware is GigabitEthernet, address is aaaa.bbbb.cccc (bia aaaa.bbbb.cccc)
MTU 1500 bytes, BW 100000 Kbit/sec, DLY 100 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)
Full-duplex, 100Mb/s, media type is SFP
ARP type: ARPA, ARP Timeout 04:00:00
Last input never, output never, output hang never
Last clearing of "show interface" counters never
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue: 0/40 (size/max)
5 minute input rate 0 bits/sec, 0 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec
0 packets input, 0 bytes, 0 no buffer
Received 0 broadcasts (0 IP multicasts)
0 runts, 0 giants, 0 throttles
0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
0 watchdog, 0 multicast, 0 pause input
0 input packets with dribble condition detected
0 packets output, 0 bytes, 0 underruns
0 output errors, 0 collisions, 1 interface resets
0 unknown protocol drops
0 babbles, 0 late collision, 0 deferred
0 lost carrier, 0 no carrier, 0 pause output
0 output buffer failures, 0 output buffers swapped out
R1# show running-config interface gigabitethernet 0/0
Building configuration...
Current configuration : 85 bytes
!
interface GigabitEthernet0/0
ip address 10.0.0.1 255.255.255.252
speed 100
duplex full
negotiation auto
end- A
Configure R1 with 'no speed', 'no duplex', and 'negotiation auto' on GigabitEthernet0/0, then replace the SFP module with a 1000BASE-LX SFP.
This is correct because removing the hard-coded speed and duplex settings and enabling auto-negotiation on R1 allows the link to come up with R2. For the 5 km distance, a 1000BASE-LX SFP supports up to 10 km, meeting the requirement.
- B
Configure R1 with 'speed 1000' and 'duplex full' on GigabitEthernet0/0, then replace the SFP module with a 1000BASE-SX SFP.
Why wrong: This is incorrect because setting speed 1000 and duplex full on R1 while R2 is using auto-negotiation will still cause a mismatch; auto-negotiation fails when one side is hard-coded. Also, 1000BASE-SX only supports up to 550 m, insufficient for 5 km.
- C
Configure R1 with 'no speed', 'no duplex', and 'negotiation auto' on GigabitEthernet0/0, then replace the SFP module with a 1000BASE-SX SFP.
Why wrong: This is incorrect because while the auto-negotiation fix is correct, the 1000BASE-SX SFP only supports distances up to 550 m, which is insufficient for the 5 km requirement.
- D
Configure R1 with 'speed 100' and 'duplex full' on GigabitEthernet0/0, then replace the SFP module with a 1000BASE-LX SFP.
Why wrong: This is incorrect because setting speed 100 on a GigabitEthernet interface forces the link to 100 Mbps, which is not Gigabit Ethernet and will not work with the SFP module (which expects 1000 Mbps). Also, the hard-coded settings will cause a mismatch with R2's auto-negotiation.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.