Advertisement
troptrop

Module 4 Notes

Oct 9th, 2024 (edited)
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. Legacy Inter VLAN Routing
  2. -Uses Physical interfaces
  3. -Significantly limited due to limited number of physical interfaces
  4. -Simplest
  5. -No longer implemented in switched networks
  6. -Uses Switchport
  7.  
  8. Router on a Stick
  9. -Looks the same as legacy but only uses one cable and switchport
  10. -Only requires one interface
  11. -Requires most configuration, more commands
  12. -too many communication between VLANS can cause issues with limited bandwidth
  13.  
  14. -requires you to create a subinterface for each vlan to be routed
  15. requires two commands
  16. -encapsulation dot1q (vlan_id) [native]
  17. -ip address (ip-address) (subnet-mask)
  18.  
  19. -no shut required for phsycial interface afterwards to enable physical interface
  20.  
  21. Layer 3 Switch
  22. -Most expensive
  23. -Cleanest topology, better performance
  24. -Has Layer 2 EtherChannels that can be used as trunk links to increase bandwidth
  25. -Latency is much lower cause data doesn't need to leave switch to be routed to different network
  26. -most commonly deployed in large scale LANs (i.e campus LANs)
  27. -Route from one VLAN to another using multiple switched virtual interfaces
  28. -Can convert a layer 2 switchport to a layer 3 interface
  29.  
  30. -VLANs that are to be reachable by other layer 3 devices must be advertised using static or dynamic routing
  31. -no switchport command on a layer 2 port converts it into a layer 3 interface
  32. -interface gets configured with an IPv4 configuratiom
  33.  
  34. Configuration on a Layer 3 Switch:
  35. -no switchport command on a layer 2 port converts it into a layer 3 interface
  36. -ip routing global configuration command
  37. -configure routing
  38.  
  39. -show ip interface brief command verifies subinterface status
  40. -show interface verifies which VLANs each subinterface is on
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement