Cisco ACI L3OUT Configuration

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ก.ย. 2024
  • Cisco ACI L3OUT Configuration

ความคิดเห็น • 20

  • @faisal04021987
    @faisal04021987 ปีที่แล้ว

    One of the best Videos on L3out. Simple and straight to the point.
    Appreciate Colin a video Service Graph (FW).

  • @craigweinhold
    @craigweinhold 6 ปีที่แล้ว +6

    Very nice tutorial, Colin. It's worth mentioning the goofiness of L3 peering over VPC -- i.e., that packets from the OSPF border router will be sent out both interfaces regardless of which leaf SVI IP/MAC the router thinks it's sending to. For OSPF control plane, this means each leaf receives OSPF messages destined to the other leaf, so they must forward those via the fabric. For data plane, this means ACI uses the "peer gateway" hack so leaves can impersonate each other for L3 forwarding.
    Frankly, I see no value in running three different link failover mechanisms at the same time (IGP, VPC, and LACP). Given VPC goofiness and LACP's vendor interop problems (timers, standby link, and "suspend individual" behavior), I really don't want my IGP relying on them.
    So, by far the simplest and most universal approach should be to run your L3OUT IGP over multiple routed interfaces / subinterfaces.

    • @commando30
      @commando30 6 ปีที่แล้ว

      Craig Weinhold excellent observation.

  • @MahananGogoi
    @MahananGogoi 4 ปีที่แล้ว

    The best tutorial on L3 out configuration.. Thank you sir

  • @fahimuel
    @fahimuel 6 ปีที่แล้ว +1

    Great explanation of L3OUT in CISCO ACI . However, this video is intended for network engineers who already have some background knowledge about general networking and CISCO ACI.

  • @ankitkewalramani001
    @ankitkewalramani001 4 ปีที่แล้ว

    very nice explanation ....helped me a lot

  • @ahmedsabanaa589
    @ahmedsabanaa589 6 ปีที่แล้ว

    Sir . you made me very happy , thank you so much

  • @bawwf011
    @bawwf011 5 ปีที่แล้ว

    Excellent Videos. Thank you!!

  • @samirsuleiman8014
    @samirsuleiman8014 4 ปีที่แล้ว

    Colin, thanks for such nice videos! You mentioned you have plans to create another video for shared L3Out? Thanks!

  • @dgza703
    @dgza703 3 ปีที่แล้ว +1

    Hello, do you have a video on static L3 out? that implememtation is more common as typically the next hop is a static only firewall.

    • @colinlynch1972
      @colinlynch1972 3 ปีที่แล้ว +1

      Hi Thanks, for the comment, No I haven't done a static routed version, but it would be the same as this one, just don't tick a dynamic routing protocol, and then enter your relevant static routes under each node in the L3OUT Node Profile.

    • @dgza703
      @dgza703 3 ปีที่แล้ว +1

      @@colinlynch1972 Thanks. Thanks for creating content that is fantastic. It does matter.

  • @hamsemohamed1926
    @hamsemohamed1926 4 ปีที่แล้ว

    Hi,
    How can I practise L3-out in a home lab. What did you use for this video. Is hardware mandatory to practise and validate data path traffic

  • @samirsuleiman712
    @samirsuleiman712 6 ปีที่แล้ว

    Thanks for the video! Can you please share the configuration of the 3560G switch? In particulate, I would like to see vlan 100 svi configuration, port channel configuration, and T3 & T4 configurations. Thanks for your help in advance.

    • @ucsguru
      @ucsguru  6 ปีที่แล้ว +1

      !
      hostname C3650G
      !
      !
      vlan 2740
      name sdnlab
      lldp run
      !
      !
      class-map match-any non-client-nrt-class
      match non-client-nrt
      !
      policy-map port_child_policy
      class non-client-nrt-class
      bandwidth remaining ratio 10
      !
      !
      interface Loopback0
      ip address 1.1.1.1 255.255.255.255
      ip mtu 1500
      !
      interface Loopback1
      ip address 2.2.2.2 255.255.255.255
      ip mtu 1500
      !
      !
      interface Port-channel100
      description Routed Link to ACI Fabric l3out
      switchport trunk allowed vlan 100
      switchport mode trunk
      !
      interface GigabitEthernet0/0
      vrf forwarding Mgmt-vrf
      ip address 172.22.140.51 255.255.255.0
      negotiation auto
      !
      interface GigabitEthernet1/0/1
      description Legacy Link to ACI Fabric l2out
      switchport access vlan 2740
      switchport trunk allowed vlan 2,3
      switchport mode trunk
      !
      !
      interface TenGigabitEthernet1/1/3
      description Routed Link to ACI Fabric l3out
      switchport trunk allowed vlan 100
      switchport mode trunk
      channel-group 100 mode active
      !
      interface TenGigabitEthernet1/1/4
      description Routed Link to ACI Fabric l3out
      switchport trunk allowed vlan 100
      switchport mode trunk
      channel-group 100 mode active
      !
      interface Vlan1
      no ip address
      shutdown
      !
      interface Vlan2
      vrf forwarding Legacy
      ip address 2.2.2.2 255.255.255.0
      !
      interface Vlan3
      vrf forwarding Legacy
      ip address 3.3.3.3 255.255.255.0
      !
      interface Vlan100
      ip address 100.0.0.1 255.255.255.0
      !
      interface Vlan2740
      ip address 172.22.140.240 255.255.255.0
      !
      router ospf 100
      network 1.1.1.1 0.0.0.0 area 1
      network 2.2.2.2 0.0.0.0 area 1
      network 100.0.0.0 0.0.0.255 area 1
      network 172.22.140.0 0.0.0.255 area 0
      default-infomation orginate
      !
      ip default-gateway 172.22.140.250
      ip http server
      ip http authentication local
      ip http secure-server
      !
      ip route 0.0.0.0 0.0.0.0 172.22.140.250
      ip route vrf Mgmt-vrf 0.0.0.0 0.0.0.0 172.22.140.250
      !
      !
      !
      !
      end
      C3650G#

    • @samirsuleiman712
      @samirsuleiman712 6 ปีที่แล้ว

      Thanks Much!!!!!!!!!!!

    • @samirsuleiman8014
      @samirsuleiman8014 4 ปีที่แล้ว

      Colin, thanks for such nice videos! You mentioned you have plans to create another video for shared L3Out? Thanks!

  • @lovedefeatsus
    @lovedefeatsus 3 ปีที่แล้ว

    @5:15 can the AS be public?

  • @townman1
    @townman1 7 ปีที่แล้ว

    You started taking about L3OUT , but never explained WHAT is L3OUT, no Definition was given , therefore it is confusing!

    • @ucsguru
      @ucsguru  7 ปีที่แล้ว +1

      Noted, thanks for the feedback and apologies for the confusion.