19 - IPv4 Routing in the LAN Flashcards

1
Q

What commands are used to configure ROAS using the physical interface for the native VLAN 1?

A
  • int fa0/0
    • ip address 10.1.1.1 255.255.255.0
  • int fa0/0.20
    • ip address 10.1.20.1 255.255.255.0
    • encap dot1q 20
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What commands are used to configure ROAS using a subinterface for the native VLAN 1?

A
  • int fa0/0
    • int fa0/0.1
      • ip address 10.1.1.1 255.255.255.0
      • encap dot1q 1 native
    • int fa0/0.20
      • ip address 10.1.20.1 255.255.255.0
      • encap dot1q 20
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What ‘show’ cmds on a router can be used to verify ROAS configuration?

A
  • show running-config
  • show ip route
  • show vlans
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

In a ROAS configuration can you tell from the router whether or not the switch has been configured correctly?

A

No

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What commands are needed on a switch to prepare it to do L3 routing?

A
  • sdm prefer lanbase-routing
  • <then></then>
  • ip routing (global cmd)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does the command ‘sdm prefer lanbase-routing’ do?

A

Changes switch forwarding ASIC to make room for IP Routes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does the global command ‘ip routing’ do?

A
  • enables IPv4 routing functions
  • enables commands like ‘show ip route’
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What 3 commands are used to configure an SVI?

A
  • int vlan20
    • ip address 10.1.20.1 255.255.255.0
    • no shut
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What ‘show’ cmd allows you to verify correct configuration of an SVI?

A

‘show ip route connected’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

If an SVI doesn’t come up what 4 things should you check?

A
  • the local switch has the VLAN configured
  • At least one interface or trunk assigned to the VLAN must be up/up
  • Make sure VLAN is ‘no shut’
  • Make sure SVI is ‘no shut’
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What command changes a switch port to a router interface?

A

no switchport

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

When a switchport is changed to a router interface what 4 commands will show this?

A
  • show interfaces (will now show an IP address)
  • show interface status (under VLAN will show ‘routed’)
  • show ip route (interface now shows up as an outgoing interface in routes)
  • show int gig2/1 switchport (short output)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

When configuring a L3 port channel what commands go on the physical interfaces?

A
  • channel-group 1 mode on
  • no switchport
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

When configuring a L3 port channel what commands go on the port-channel interface?

A
  • int po1
  • no switchport
  • ip address 10.1.1.1 255.255.255.0
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What ‘show’ cmd verifies the port-channel configuration?

A

‘show etherchannel summary’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

When troubleshooting a port-channel configuration what 3 items should you check?

A
  • make sure ‘no switchport’ is configured on all interfaces
  • Speed must match
  • Duplex must match
17
Q

When configuring a port-channel what does the command ‘channel-group 1 mode on’ do?

A

Configures a port-channel with NO NEGOTIATION

18
Q

How do you configure an interface to participate in a PAgP-negotiated port-channel?

A

Either

1) on side A - channel-group 1 mode desirable on side B - channel-group 1 mode auto

or

2) channel-group 1 mode desirable on both sides

19
Q

How do you configure an interface to participate in a LACP-negotiated port-channel?

A

Either 1) channel-group 1 mode active or 2) channel-group 1 mode passive

20
Q

What is the difference in how a packet is handled btw an SVI and a routed interface?

A

The routed interface strips off the datalink header and adds a new one.