cisco support community presents tech-talk series ... · ruchir jain customer support engineer...

14
Ruchir Jain Customer Support Engineer CCIE#26911 August 2014 Introduction to EVN / VNET Cisco Support Community Presents Tech-Talk Series

Upload: others

Post on 24-Aug-2020

3 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Cisco Support Community Presents Tech-Talk Series ... · Ruchir Jain Customer Support Engineer CCIE#26911 August 2014 Introduction to EVN / VNET Cisco Support Community Presents Tech-Talk

Ruchir Jain Customer Support Engineer CCIE#26911

August 2014

Introduction to EVN / VNET

Cisco Support Community Presents Tech-Talk Series

Page 2: Cisco Support Community Presents Tech-Talk Series ... · Ruchir Jain Customer Support Engineer CCIE#26911 August 2014 Introduction to EVN / VNET Cisco Support Community Presents Tech-Talk

Cisco Public 2 © 2013-2014 Cisco and/or its affiliates. All rights reserved.

1 What will it do? 2 Why

do we need it? 3 How will we implement it?

Page 3: Cisco Support Community Presents Tech-Talk Series ... · Ruchir Jain Customer Support Engineer CCIE#26911 August 2014 Introduction to EVN / VNET Cisco Support Community Presents Tech-Talk

Cisco Public 3 © 2013-2014 Cisco and/or its affiliates. All rights reserved.

EVN at a Glance

Virtual Segmentation Easy Deployment

Reuse of VLAN ID Simple Configuration

No New Routing Protocol

Page 4: Cisco Support Community Presents Tech-Talk Series ... · Ruchir Jain Customer Support Engineer CCIE#26911 August 2014 Introduction to EVN / VNET Cisco Support Community Presents Tech-Talk

Cisco Public 4 © 2013-2014 Cisco and/or its affiliates. All rights reserved.

§  VRF Lite §  VNET Trunks (equivalent to dot1q tag)

§  Automatic creation of hidden dot1q sub-interfaces

§  Configuration inheritance of main interface

§  Separate Routing Sub-interfaces

§  Support for Route Leaking

§  IPv4 and IPv6

EVN Components

Page 5: Cisco Support Community Presents Tech-Talk Series ... · Ruchir Jain Customer Support Engineer CCIE#26911 August 2014 Introduction to EVN / VNET Cisco Support Community Presents Tech-Talk

Cisco Public 5 © 2013-2014 Cisco and/or its affiliates. All rights reserved.

Sample Topology

CE1 CE2 PE1 PE2

P1

Page 6: Cisco Support Community Presents Tech-Talk Series ... · Ruchir Jain Customer Support Engineer CCIE#26911 August 2014 Introduction to EVN / VNET Cisco Support Community Presents Tech-Talk

Cisco Public 6 © 2013-2014 Cisco and/or its affiliates. All rights reserved.

Creating VRF

CE1 CE2 PE1 PE2

P1

vrf definition CUST-A vnet tag 100 ! address-family ipv4 exit-address-family

vrf definition CUST-A vnet tag 100 ! address-family ipv4 exit-address-family

vrf definition [name] vnet tag [2-4094] ! address-family ipv4|ipv6 exit-address-family

Page 7: Cisco Support Community Presents Tech-Talk Series ... · Ruchir Jain Customer Support Engineer CCIE#26911 August 2014 Introduction to EVN / VNET Cisco Support Community Presents Tech-Talk

Cisco Public 7 © 2013-2014 Cisco and/or its affiliates. All rights reserved.

Assigning edge interfaces to VRF

CE1 CE2 PE1 PE2

P1 interface Ethernet0/0 vrf forwarding CUST-A ip address 10.1.1.1 255.255.255.0

interface Ethernet0/0 vrf forwarding CUST-A ip address 10.2.2.1 255.255.255.0

interface GigabitEthernet x/x.y vrf forwarding [name] ip address x.x.x.x y.y.y.y ...

Page 8: Cisco Support Community Presents Tech-Talk Series ... · Ruchir Jain Customer Support Engineer CCIE#26911 August 2014 Introduction to EVN / VNET Cisco Support Community Presents Tech-Talk

Cisco Public 8 © 2013-2014 Cisco and/or its affiliates. All rights reserved.

Defining VNET Trunks

CE1 CE2 PE1 PE2

P1

interface Ethernet0/1 vnet trunk ip address 10.7.7.1 255.255.255.0

interface Ethernet0/1 vnet trunk ip address 10.8.8.1 255.255.255.0

interface GigabitEthernetx/x vnet trunk ip address x.x.x.x y.y.y.y ...

Page 9: Cisco Support Community Presents Tech-Talk Series ... · Ruchir Jain Customer Support Engineer CCIE#26911 August 2014 Introduction to EVN / VNET Cisco Support Community Presents Tech-Talk

Cisco Public 9 © 2013-2014 Cisco and/or its affiliates. All rights reserved.

Actual Configuration of VNET Trunks

CE1 CE2 PE1 PE2

P1

interface Ethernet0/0 vnet trunk ip address 10.7.7.1 255.255.255.0 interface Ethernet0/0.100 encapsulation dot1Q 100 vrf forwarding CUST-A ip address 10.7.7.1 255.255.255.0

interface Ethernet0/0 vnet trunk ip address 10.8.8.1 255.255.255.0 interface Ethernet0/0.100 encapsulation dot1Q 100 vrf forwarding CUST-A ip address 10.8.8.1 255.255.255.0

- New sub-interface is created per VRF - “show derived-config” displays this configuration - Sub interface inherits ip address from main interface - Dot1q tag is derived from VRF configuration - Allowed on both Physical and Port-channel - Co-existence with manually created sub-interface is not supported

Page 10: Cisco Support Community Presents Tech-Talk Series ... · Ruchir Jain Customer Support Engineer CCIE#26911 August 2014 Introduction to EVN / VNET Cisco Support Community Presents Tech-Talk

Cisco Public 10 © 2013-2014 Cisco and/or its affiliates. All rights reserved.

Configure Routing Protocol

CE1 CE2 PE1 PE2

P1 router ospf 1 vrf CUST-A network 10.1.1.1 0.0.0.0 area 0 network 10.7.7.1 0.0.0.0 area 0

router ospf 1 vrf CUST-A network 10.2.2.1 0.0.0.0 area 0 network 10.8.8.1 0.0.0.0 area 0

router ospf x vrf [name] network x.x.x.x y.y.y.y area x ...

Page 11: Cisco Support Community Presents Tech-Talk Series ... · Ruchir Jain Customer Support Engineer CCIE#26911 August 2014 Introduction to EVN / VNET Cisco Support Community Presents Tech-Talk

Cisco Public 11 © 2013-2014 Cisco and/or its affiliates. All rights reserved.

Configure P routers

CE1 CE2 PE1 PE2

P1

interface Ethernet0/0 vnet trunk ip address 10.7.7.2 255.255.255.0

interface Ethernet0/1 vnet trunk ip address 10.8.8.1 255.255.255.0

vrf definition CUST-A vnet tag 100 ! address-family ipv4 exit-address-family ! router ospf 1 vrf CUST-A network 10.7.7.2 0.0.0.0 area 0 network 10.8.8.2 0.0.0.0 area 0

Page 12: Cisco Support Community Presents Tech-Talk Series ... · Ruchir Jain Customer Support Engineer CCIE#26911 August 2014 Introduction to EVN / VNET Cisco Support Community Presents Tech-Talk

Cisco Public 12 © 2013-2014 Cisco and/or its affiliates. All rights reserved.

§  Route Replication

§  Limiting VNET’s on Trunk

§  Per VRF Trunk Attributes

§  Different VNET Tags for Trunks

Advanced Features

Page 13: Cisco Support Community Presents Tech-Talk Series ... · Ruchir Jain Customer Support Engineer CCIE#26911 August 2014 Introduction to EVN / VNET Cisco Support Community Presents Tech-Talk

Cisco Public 13 © 2013-2014 Cisco and/or its affiliates. All rights reserved.

Cisco.com http://www.cisco.com/c/en/us/products/ios-nx-os-software/easy-virtual-network-evn/index.html

Ask the Experthttps://supportforums.cisco.com/discussion/11564071/ask-expertnew-campus-segmentation-technology-using-cisco-easy-virtual-network

Cisco Live http://iwe.cisco.com/web/communications-resource-center/messaging-central

Page 14: Cisco Support Community Presents Tech-Talk Series ... · Ruchir Jain Customer Support Engineer CCIE#26911 August 2014 Introduction to EVN / VNET Cisco Support Community Presents Tech-Talk

Thank you.