• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/28

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

28 Cards in this Set

  • Front
  • Back
To change a port between L2 and L3. Enabled is L2, Disabled L3. If in L3 assign an ip address.
switch(config-if) [no] switchport
To assign an IP to a logical L3 interface, a Switched Virtual Interface (SVI). The VLAN must be defined and active on the switch before the SVI can be used
switch(config)# interface vlan [vlan-id] then switch(config-if)# ip address [ip address] [ subnet mask]
To enable a fallback bridge group and its instance of VLAN-bridge STP. You can configure up to 31 different groups on a switch.
switch(config)# bridge-group [bridge-group] protocol vlan-bridge
To add each VLAN in which non routable traffic will be bridged to the appropriate bridge group.
switch(config-if)# bridge-group [bridge-group]
To view a summary of all active fallback bridge groups along with their STP states.
switch# show bridge group
To display the bridging table contents for a specific fallback bridge group.
switch# show bridge [bridge group] [verbose]
To view if in L2 or L3 mode and verify the configuration of a L2 port. Can see if access VLAN or trunking mode and Native VLAN
switch# show interface [type] [mod/num] switchport
To see the physical interfaces status and counters.
switch# show interface [type] [mod/num]
To see a summary list of all interfaces
switch# show interface status
To verify the configuration of a SVI. To show its status (up or down).
switch# show interface vlan [vlan-id]
To see a list of all configured VLANS. Each defined VLAN is shown along with the switch ports assigned to it.
switch# show vlan
To display the IP-related information about a switch interface.
switch# show ip interface
To view a summary table of all the interfaces involved in routing IP traffic.
switch# show ip interface brief
To view the entire FIB in table showing prefix, Next Hop (Receive=packets sent to L3 engine, Attached=connected directly to an SVI, IP Address=An adjacent device is available) and interface.
switch# show ip cef
To see the FIB table entries for a specific interface or VLAN. Is a table with prefix, next hop and interface
switch# show ip cef [[type] [mod/num] |vlan [vlan-id]]
To see the FIB table entries of a exact match for a specific ip prefix address and mask in same table format. Use longer-prefixes to see longer match entries
switch# show ip cef [prefix IP and mask] [longer-prefixes]
What does adding detail to any of these commands do.
See Info in list view, but with extra info like number of times the CEF entry has been updated since table generated (version) and the number of times CEF table has been flushed sand regenerated as a whole (Epoch)
To display the adjacency table, the L2 next hop MAC. Shows table with adjacency count per interface.
switch# show adjacency [[type] [mod/num] | vlan [vlan-id]] summary
To display more info adjacencies in list, including L2 & L3 address and the age of the ARP.
switch# show adjacency [[type] [mod/num] | vlan [vlan-id]] detail
To see the glean state, which is when their is no ARP entry because of missing L2 next-hop address.
switch# show ip cef adjacency glean or switch# show ip cef [prefix IP and mask] detail
To see the ARP table, so will show if their are no valid ARP entries for an IP address.
switch# show ip arp [ip address]
To gauge the drop adjacency activity and reason. Is when packets are dropped because they cant be forwarded normally.
switch# show cef drop
To gauge the CEF punt activity and the various punt adjacency reasons. Is when packets must be sent to the L3 engine for further processing.
switch# show cef not-cef-switched
Can you assign an IP address to a Etherchannel.
Yes, but the network address is assigned to the "port-channel" interface, not the individual links within the channel.
What is used for protocols like IPX or AppleTalk that CEF cant route or switch.
Fallback routing, were each SVI associated with a VLAN in which non routable protocols are being used is assigned to a bridge group, were packets are bridged transparently.
How is loop free fallback bridging maintained.
Inter-bridge STP is used, 1 instance per fallback bridge group). Although doesn't interact with 802.1d STP, it does act similarly. You can configure any of the same priorities or timers, but swap spanning-tree for bridge group [bridge-group]
What is a CEF Punt
Is when a packet cant be forwarded or switched by CEF directly because it needs further processing. So is punted to the L3 engine, effectively bypassing CEF for a more involved resolution.
What is CEF Glean
Is when MAC (ARP Reply) for next hop is not yet known. The L3 engine must generate an ARP request and wait for a reply before CEF forwarding can continue to the destination.