Assessment Test Flashcards
You reload a router with a configuration register setting of 0x2101. What will the router do when it reloads?
A. The router enters setup mode
B. The router enters ROM monitor mode
C. The router boots the mini-IOS in ROM.
D. The router expands the first IOS in flash memory into RAM.
C. The router boots the mini-IOS in ROM.
2100 boots the router into ROM monitor mode, 2101 loads the mini-IOS from ROM, and 2102 is the default and loads the IOS from flash.
Which of the following commands provides the product ID and serial number of the router? A. show license B. show license feature C. show version D. show license UDI
D. show license UDI
The show license udi command displays the unique device identifier(udi) of the router, which comprises the product ID (pid) and serial number of the router.
Which command allows you to view the technology options and licenses that are supported on your router along with several status variables? A. show license B. show license feature C. show license udi D. show version
B. show license feature
The show license feature command allows you to view the technology package licenses and feature licenses that are supported on your router along with several status variables related to software activation and licensing , both licensed and unlicensed features.
You want to send a console message to a syslog server but you only want to send status messages of 3 and lower. Which of the following commands will you use? A. logging trap emergencies B. logging trap errors C. logging trap debugging D. logging trap notifications E. logging trap critical F. logging trap warnings G. logging trap alerts
B. logging trap errors
There are eight different trap levels. If you choose for example level 3, level 0 through level 3 messages will be displayed.
IPv6 unicast routing is running on a corporate router. Which of the following addresses would show up with the show ipv6 int brief command? A.FF02::3c3d:0d:bdff:fe3b:0d80 B. FE80::3c3d:2d:bdff:fe3b:0d80 C. FE80::3c3d:0d:bdff:fe3b:0d80 D. FE80::3c3d:2d:ffbd:3bfe:0d80
B.FE80::3c3d:2d:bdff:fe3b:0d80 This can be a hard question if you don’t remember to invert the 7th bit of the first octet in the MAC address. Always look for the 7th bit when studying for the Cisco R/S, and when using eui-64, invert it. The eui-64 auto configuration then inserts an FF:FE in the middle of the 48 bit MAC address to create a unique IPv6 address.
A host sends a type of NDP message providing the MAC address that was requested. Which type of NDP was sent? A. NA B. RS C. RA D. NS
A. NA
The NDP neighbor advertisement(NA) contains the MAC address. A neighbor solicitation (NS) was initially sent asking for the MAC address.
Each field in an IPv6 address is how many bits long? A. 4 B. 16 C. 32 D. 128
B. 16
B. Each field in an IPv6 address is 16 bits long. An IPv6 address has eight fields for a total of 128 bits.
What does the command routerA(config)# line cons 0 allow you to perform next? A. Set the Telnet password B. Shut down the router C. Set your console password D. Disable console connections
C. Set your console password
The command line console 0 places you at a prompt where you can then set your console user-mode password.
Which two statements describe the IP address 10.16.3.65/23 (choose two)
A. The subnet address is 10.16.3.0 255.255.254.0
B. The lowest host address in the subnet is 10.16.2.1 255.255.254.0
C. The last valid host address in the subnet is 10.16.2.254 255.255.254.0
D. The broadcast address of the subnet is 10.16.3.255 255.255.254.0
E. The network is not subnetted
B. The lowest host address in the subnet is 10.16.2.1 255.255.254.0
D. The broadcast address of the subnet is 10.16.3.255 255.255.254.0
The mask 255.255.255.254.0 (/23) used with a Class A address means that there are 15 subnet bits and 9 host bits. The block size in the third octet is 2 (256-254). So this makes the subnet a in the interesting octet 0,2,4,6,etc., all the way to 254. The host 10.16.3.65 is in the 2.0 subnet. The next subnet is 4.0 so the broadcast address for the 2.0 subnet is 3.255. The valid host addresses are 2.1 through 3.254
On which interface do you configure an IP address for a switch? A. int fa0/0 B. int vty 0 15 C. int vlan 1 D. int s/0/0
C. int vlan 1
The IP address is configured under a logical interface, called a management domain or VLAN 1, by default.
Which of the following is the following is the valid host range for the subnet on which the IP address 192.168.168.188 255.255.255.192 resides? A. 192.168.168.129-190 B. 192.168.168.129-191 C. 192.168.168.128-190 D. 192.168.168.128-192
A. 192.168.168.129-190
256-192=64, so 64 is our block size. Just count in increments of 64 to find our subnet: 64+64=128. 128+64=192. The subnet is 128, the broadcast address is 191, and the valid host range is the numbers in between,or 129-190.
Which of the following is considered to be the inside host’s address after translation? A. Inside local B. Outside local C. Inside global D. Outside global
C. Inside global
An inside global is considered to be the IP address of the host on the private network after translation
- Your inside locals are not being translated to the inside global addresses. Which of the following commands will show you if your inside global a are allowed to use the NAT pool?
ip nat pool Corp 198.18.41.129 198.18.41.134 netmask 255.255.255.248
ip nat inside source list 100 int s0/0 Corp overload
A. debug ip nat
B. show access-list
C. show ip nat translation
D. show ip net statistics
B. show access-list
Once you create your pool, the command ip nat inside source must be used to say which inside locals are allowed to use the pool. In this question, we need to see if access list 100 is configured correctly ,if at all, so show access-list is the best answer.
How many collision domains are created when you segment a network with a 12-port switch? A. 1 B. 2 C. 5 D. 12
D. 12
Layer 2 switching creates individual collision domains per port.
Which of the following commands will allow you to set your Telnet password on a Cisco router? A. line telnet 0 4 B. line aux 0 4 C. line vty 0 4 D. line con 0
C. line vty 0
The command line vty 0 4 places you in a prompt that will allow you to set or change your Telnet password.