Other Flashcards
Which of the following are commonly used WAN protocols? Choose three.
A. WEP
B. WING
C. Frame Relay
D. HDLC
E. AAA
F. PPP
The big three WAN protocols are PPP, Frame Relay and HDLC. There are others, but CCNA does not cover them.
A. WEP
B. WING
C. Frame Relay
D. HDLC
E. AAA
F. PPP
Which port numbers are used by well-known protocols that use connectionless transport?
A. 25
B. 53
C. 20
D. 69
E. 161
F. 110
- B, D and E are correct. These ports… are used by DNS, TFTP, and SNMP – all of which use unreliable/connectionless UDP transport.
A. 25
B. 53
C. 20
D. 69
E. 161
F. 110
You have been asked to create a subnet that supports 16 hosts. What subnet mask should you use?
A. 255.255.255.252
B. 255.255.255.248
C. 255.255.255.240
D. 255.255.255.224
- D is correct. A will only support 2 hosts; B only 6 and C only 14. Watch out for the minus 2 in the host calculation! Answer C creates 16 hosts on the subnet, but we lose 2 – one for the NET ID and one for the Broadcast ID.
A. 255.255.255.252
B. 255.255.255.248
C. 255.255.255.240
D. 255.255.255.224
Which of the following correctly summarizes the boot sequence?
A. Find IOS, Load IOS, POST, Find config, Load config
B. Post, Find IOS, Load IOS, Find config, Load config
C. POST, Find config, Load config, Find IOS, Load IOS
D. ROMMON, RXBOOT, Load IOS, Load config
- B is correct. A, C and D are either out of order or incorrect.
A. Find IOS, Load IOS, POST, Find config, Load config
B. Post, Find IOS, Load IOS, Find config, Load config
C. POST, Find config, Load config, Find IOS, Load IOS
D. ROMMON, RXBOOT, Load IOS, Load config
- What is the command to back up your IOS to a TFTP server?
A. copy nvram tftp
B. copy tftp nvram
C. copy tftp flash
D. copy flash tftp
- D is correct. This would copy the IOS in flash memory to a TFTP server. A and B are incorrect because the IOS is stored in flash and not NVRAM. C is incorrect because copy tftp flash would upgrade your IOS from a TFTP server rather than copy your IOS to a TFTP server.A. copy nvram tftp
B. copy tftp nvram
C. copy tftp flash
D. copy flash tftp
Which of the following are trunk port models? Choose all that apply.
A. on
B. idle
C. off
D. blocking
E. auto
F. desirable
G. undesirable
- A, C, E and F are correct. The on mode, off mode, auto mode and desirable mode are trunk port modes. B, D and G are incorrect; these other modes are not associated with trunking.
A. on
B. idle
C. off
D. blocking
E. auto
F. desirable
G. undesirable
- What would be the proper wildcard mask to permit all odd numbered hosts on the 10.48.0.0/12 network?
access-list 1 permit 10.48.0.0 0.15.255.255
access-list 1 permit 10.48.0.1 0.15.255.254
access-list 1 permit 10.48.0.0 0.15.255.1
access-list 1 permit 10.48.0.0 0.0.0.254
access-list 1 permit 10.48.0.0 0.0.0.255
- B is correct. All odd-numbered hosts would have the one bit turned on in the last octet. Therefore, you need to check all hosts that have the one bit turned on (set to 1). You do not care about the other host bits. The default wild card mask for a /12 network is 0.0.15.255, but because you want to match only those hosts that have the one bit turned on, you will need a wildcard mask of 0.0.15.255.254 . A is incorrect because this would match both even and odd numbered hosts. C is incorrect because this would match all hosts from 10.48.0.0 through 10.48.255.0. D and E are incorrect because they have the wrong wildcard mask.
- You are working in an environment that is running IP, IPX, and AppleTalk. What routing protocol inherently supports all three of these protocols?
RIP version 1
RIP version 2
OSPF
IGRP
EIGRP
- E is correct. EIGRP is the only routing protocol that supports IP, IPX and AppleTalk. RIP, OSPF and IGRP are routing protocols that only support IP, so therefore the other choices are incorrect.
9. Which of the following are components of the LCP phase of PPP? Select all that apply.
A. Compression
B. Authentication
C. QoS
D. Multilink
- A, B and D are correct. The LCP phase is responsible for the initial link-setup and negotiating options such as compression, callback, multilink and authentication. C is incorrect because this is not a component of LCP.
A. Compression
B. Authentication
C. QoS
D. Multilink
- True or false: Route summarization is mandatory.
True
False
- False. Although it might be a good idea in many cases, route summarization is never mandatory (not counting routing protocols that automatically summarize).
Which two Features does a router use to help prevent routing loops whilst using RIP?
1) Split Horizon
(is used in distance vector routing protocols and it is a rule that preventing a route being advertised over the link on which it was learned. this help prevent routing loops being added to the routing table.)
2) Hold-down timers
(When a router running RIP learns that a rout is unavailable it will start off a hold down timer. The hold down timer ensures that the router will discard any routing updates about the unreachable route either until the route is back up or a better route is learned. This helps prevent routing loops being added to routing table.)
Disable CDP
1) On an interface
2) On the whole device
1) To disable CDP on an interface only.
router(config-if)#no cdp enable
2) to disable CDP on the whold device:
router(config)#no cdp run
Set Password to allow telnet connections
line vty 0 4
password <password></password>
encrypt all cleartext passwords
service password-encryption
Set privileged mode encrypted password.
Set privileged mode cleartext password.
Set privileged mode encrypted password.
enable secret <secret></secret>
Set privileged mode cleartext password.
enable password <password></password>