Home > CCNA – Switch Questions 3

CCNA – Switch Questions 3

February 22nd, 2011 Go to comments

Here you will find answers to Switch Questions – Part 3

Question 1

Which of the following are true regarding bridges and switches? (Choose two)

A. Bridges are faster than switches because they have fewer ports.
B. A switch is a multiport bridge.
C. Bridges and switches learn MAC addresses by examining the source MAC address of each frame received.
D. A bridge will forward a broadcast but a switch will not.
E. Bridges and switches increase the size of a collision domain.

 

Answer: B C

Question 2

Which two commands correctly verify whether port security has been configured on port FastEthernet 0/12 on a switch? (Choose two)

A. SW1# show switchport port-security interface FastEthernet 0/12
B. SW1# show switchport port-secure interface FastEthernet 0/12
C. SW1# show port-security interface FastEthernet 0/12
D. SW1# show running-config

 

Answer: C D

Explanation

We can verify whether port security has been configured by using the “show running-config” or “show port-security interface ” for more detail. An example of the output of “show port-security interface ” command is shown below:

show_port-security_interface.jpg

Question 3

Assuming the default switch configuration which vlan range can be added modified and removed on a Cisco switch?

A. 2 through 1001
B. 1 through 1001
C. 1 through 1002
D. 2 through 1005

 

Answer: A

Explanation

VLAN 1 is the default VLAN on Cisco switch. It always exists and can not be added, modified or removed.

VLANs 1002-1005 are default VLANs for FDDI & Token Ring and they can’t be deleted or used for Ethernet.

show_vlan.jpg

Question 4

Refer to the exhibit. This command is executed on 2960Switch:

2960Switch(config)# mac-address-table static 0000.00aa.aaaa vlan 10 interface fa0/1

Which two of these statements correctly identify results of executing the command? (Choose two)

Switch_mac-address-table_static.jpg

A. Port security is implemented on the fa0/1 interface.
B. MAC address 0000.00aa.aaaa does not need to be learned by this switch.
C. Only MAC address0000.00aa.aaaa can source frames on the fa0/1 segment.
D. Frames with a Layer 2 source address of 0000.00aa.aaaa will be forwarded out fa0/1.
E. MAC address 0000.00aa.aaaa will be listed in the MAC address table for interface fa0/1 only.

 

Answer: B E

Explanation

The above command adds the MAC address 0000.00aa.aaaa to the MAC address table of the switch. This is called static MAC address. Static addresses have the following characteristics:

* Static addresses will not be removed from the address table when a given interface link is down.
* Static addresses are bound to the assigned interface and will not be moved. When a static address is seen on another interface, the address will be ignored and will not be written to the address table.
* A static address cannot be learned on another port until the address is removed with the no form of this command.

Static MAC address is not a Port Security feature -> A is not correct.

If the MAC address 0000.00aa.aaaa is seen again (on fa0/1 or other ports), it does not need to be learned because it already exists in the MAC address table of the switch -> B is correct.

Although configured with a static MAC address, switch can still learn other MAC addresses dynamically -> C is not correct.

Frames with a Layer 2 destination address (not source address) of 0000.00aa.aaaa will be forwarded out fa0/1 -> D is not correct.

Question 5

Which set of commands is recommended to prevent the use of a hub in the access layer?

A.
switch(config-if)#switchport mode trunk
switch(config-if)#switchport port-security maximum 1

B.
switch(config-if)#switchport mode trunk
switch(config-if)#switchport port-security mac-address 1

C.
switch(config-if)#switchport mode access
switch(config-if)#switchport port-security maximum 1

D.
switch(config-if)#switchport mode access
switch(config-if)#switchport port-security mac-address 1

 

Answer: C

Explanation

Port security is only used on access port (which connects to hosts) so we need to set that port to “access” mode, then we need to specify the maximum number of hosts which are allowed to connect to this port -> C is correct.

Note: If we want to allow a fixed MAC address to connect, use the “switchport port-security mac-address ” command.

Question 6

A Catalyst 2950 needs to be reconfigured. What steps will ensure that the old configuration is erased? (Choose three)

A. Erase flash.
B. Restart the switch.
C. Delete the VLAN database.
D. Erase the running configuration.
E. Erase the startup configuration.
F. Modify the configuration register.

 

Answer: B C E

Question 7

The network administrator has discovered that the power supply has failed on a switch in the company LAN and that the switch has stopped functioning. It has been replaced with a Cisco Catalyst 2950 series switch. What must be done to ensure that this new switch becomes the root bridge on the network?

A. Lower the bridge priority number.
B. Change the MAC address of the switch.
C. Increase the VTP revision number for the domain.
D. Lower the root path cost on the switch ports.
E. Assign the switch an IP address with the lowest value.

 

Answer: A

Question 8

Which two of these are characteristics of the 802.1Q protocol? (Choose two)

A. It is a layer 2 messaging protocol which maintains vlan configurations across network.
B. It includes an 8-bit field which specifies the priority of a frame.
C. It is used exclusively for tagging vlan frames and dose not address network reconvergence following switched network topology changes.
D. It modifies the 802.3 frame header and thus requires that the FCS be recomputed.
E. It is a trunking protocol capable of earring untagged frames.

 

Answer: D E

Explanation

IEEE 802.1Q is the networking standard that supports Virtual LANs (VLANs) on an Ethernet network. It is a protocol that allows VLANs to communicate with one another using a router. 802.1Q trunks support tagged and untagged frames.

If a switch receives untagged frames on a trunk port, it believes that frame is a part of the native VLAN. Also, frames from a native VLAN are not tagged when exiting the switch via a trunk port.

The 802.1q frame format is same as 802.3. The only change is the addition of 4 bytes fields. That additional header includes a field with which to identify the VLAN number. Because inserting this header changes the frame, 802.1Q encapsulation forces a recalculation of the original FCS field in the Ethernet trailer.

Note: Frame Check Sequence (FCS) is a four-octet field used to verify that the frame was received without loss or error. FCS is based on the contents of the entire frame.

Question 9

What are two advantages of Layer 2 Ethernet switches over hubs? (Choose two)

A. decreasing the number of collision domains
B. filtering frames based on MAC addresses
C. allowing simultaneous frame transmissions
D. increasing the size of broadcast domains
E. increasing the maximum length of UTP cabling between devices

 

Answer: B C

Explanation

Hub is considered a layer 1 device. When a packet arrives at one port, it is copied to the other ports without checking the content of that packet.

Switch operates at layer 2. When a packet arrives at one port, it checks in its database (based on MAC address) to see which port it should forward that packet out -> B is correct.

Remember that hubs can only communicate in half duplex mode, which means that a computer can only send data when it is not receiving. Switches can run in full duplex mode, which allows data to be sent and received at the same time. Switches effectively double the speed of the network when compared to hubs -> C is correct.

Switch increases the number of collision domains (which is better) -> A is not correct.

Switch does not have any effect on the size of broadcast domains. When using switch, the size of broadcast domains remain the same -> D is not correct.

Both hub and switch increase the maximum length of UTP cabling between devices so it is not an advantage of switch over hub -> E is not correct.

Question 10

Which command will show the MAC addresses of stations connected to switch ports?

A. show mac-address
B. show arp
C. show table
D. show switchport

 

Answer: B

Explanation

There is no “show mac-address” command. But notice the “show mac-address-table” and “show mac address-table” do exist.

If option A is “show mac-address-table” then both A & B are correct!

Comments (161) Comments
Comment pages
1 2 3 4 944
  1. Pygust
    August 8th, 2013

    A hub is one big collision domain, A switch will increase collision domains (per port)….

  2. marcocyasz
    August 12th, 2013

    For Q10:
    Show mac address should be correct. Show arp will only show mac addresses if a vlan interface is present in the switch with an assigned IP address. Show arp queries are on “layer 3″ together with corresponding Layer 2 address (because that is how arp works). The question asks for MAC Address connected to “switch ports”. show mac-address will work all of the time for switchports whilst show arp will only work if a vlan interface is configured with an IP address. In addition, you can only see MAC address of switch ports assigned under that vlan (other switchports assigned under vlans with no vlan interface with IP in the switch will not show their MAC addresses up).

  3. emad
    August 13th, 2013

    Regarding Q.10 we need look into wording which states Q.10 Which command will show the MAC addresses of stations connected to switch ports? basically connected mean learnt by switch so it will be
    SHOW ARP command will show learnt addresses by switch
    A. show mac-address is not correct because it is not complete
    if it was
    show mac-address-table then my first choice will be A.

  4. pat
    August 15th, 2013

    Q10 I think if I get it on the exam I’ll go for show arp, look at the output of show arp below, notice that in order to see any entries in arp table I had to assigned ip address to vlan 1, which was of course on the same subnet as other devices

    Switch#show arp
    Protocol Address Age (min) Hardware Addr Type Interface
    Internet 192.168.1.1 2 0060.2F98.5C6D ARPA Vlan1
    Internet 192.168.1.3 2 0001.C904.9C1D ARPA Vlan1
    Internet 192.168.1.27 – 0010.1175.3DA7 ARPA Vlan1

  5. Adeel
    August 26th, 2013

    Hello Guys I hope you will be fine there. I have CCNA (640-802) and CCNA security (640-554) Vouchers on special discount of 58% for World wide, with six months expiry date till you purchase. Each voucher cost 70USD.
    Details Required For CCNA Voucher For Discount Processing:
    1-Full Name. 1st Name & Last Name (as you want to appear on certificate & documents)
    2-Country.
    3-City.
    4-State.
    5-Pin Code (or Area Code)
    6-Residential Address (or where you can collect your Certificate or further correspondence
    can be received)
    7-Date of birth
    Add me on Skype through this information which is written below:
    Skype Name: rockon660
    you can also email me at this email address which is written below:
    madeelqaiser@gmail.com
    If you have any Questions feel free to contact me.
    Thanks,
    Best regards,
    Adeel

  6. Steve
    August 29th, 2013

    Q10 i will go with show mac-address, look at the output below of show mac-address, before get that i just assigned ip address on the host, and switch will use vlan 1 as default.

    Switch#sh mac-address
    Mac Address Table
    ——————————————-

    Vlan Mac Address Type Ports
    —- ———– ——– —–

    1 0010.110d.9b21 DYNAMIC Fa0/1
    1 0060.706c.a20d DYNAMIC Fa0/3
    1 00d0.d3de.a0d3 DYNAMIC Fa0/2

  7. chanaka
    August 30th, 2013

    Both A and B are correct

  8. jasostrong
    September 11th, 2013

    Thanks 9tut. I made it. I passed my CCNA 200-120 today. The sim is Access-list 1 , Access-list 2 & EIGRP. A lot of new questions like Netflow, Syslog, SNMP, VRRP, and GLBP.

  9. manyewe p
    October 3rd, 2013

    Thanks 9tut, passed 640-802 on the last day
    Todd Lammle is a cut above the best
    I run out of words and l thank you a thousand tymes

    Explorations l cant mention how helpful they are

  10. Goryn
    November 15th, 2013

    Q5 explanation is not correct:
    – Port security is only used on access port.
    It’s not true, because:
    Follow these guidelines when configuring port security:
    •Port security can only be configured on static access ports, trunk ports, or 802.1Q tunnel ports.

  11. 銆?銆戙€愩偄銈︺儓銉儍銉堝搧銆戯紙0.8鍙?00M锛夈儸銈搞偑 涓€銇ゃ儐銉炽儰銆€銉€銈ゃ儰銉曘偅銉冦偡銉炽偘
    March 25th, 2015

    【AFP=時事】ウェアラブル技術の中には余計なものを排除し急所に切り込むものもある。米ネバダ(Nevada

Comment pages
1 2 3 4 944
Add a Comment