Some Sample LFBs: Netdevice, IPV4, and IPV6 Jamal Hadi Salim - - PowerPoint PPT Presentation

some sample lfbs netdevice ipv4 and ipv6
SMART_READER_LITE
LIVE PREVIEW

Some Sample LFBs: Netdevice, IPV4, and IPV6 Jamal Hadi Salim - - PowerPoint PPT Presentation

Some Sample LFBs: Netdevice, IPV4, and IPV6 Jamal Hadi Salim <hadi@znyx.com> Sample LFB topology Local: ICMP, IPV4 FWD UDP TCP etc ARP MPLS IPV6 IPV4 Ingress Egress Netdevice Netdevice Goal to show A simple example topology -


slide-1
SLIDE 1

Some Sample LFBs: Netdevice, IPV4, and IPV6

Jamal Hadi Salim <hadi@znyx.com>

slide-2
SLIDE 2

Sample LFB topology

Ingress Netdevice ARP MPLS IPV4 IPV6 IPV4 FWD Egress Netdevice Local: ICMP, UDP TCP etc Goal to show A simple example topology

  • then focus on Netdevice and IPV4 LFBs for this presentation
  • Only 15 minutes allocated (not much time to go into details)
slide-3
SLIDE 3

Netdevice LFB

  • What has so far been referred to as the Port LFB

– Noun Netdevice chosen because port is confusing

  • The netdevice LFB abstraction does L1 and L2

processing

– This simplifies things and rids of the need for an L1

LFB

  • So we can lump things like SPI and XAUI in netdevice

– L2 processing includes checking for header validity,

etc but not things like L2 forwarding (which is a separate LFB)

slide-4
SLIDE 4

Netdevice Model: Capabilities

Ingress Egress From upstream LFB From upstream LFB From wire To wire To downstream LFB To downstream LFB

  • A Netdevice can have either an ingress and/or egress capability
  • A Netdevice can have one or all the input and output ports
  • Typical: ingress To-downstream and egress from-upstream ports
slide-5
SLIDE 5

Netdevice Model: Capabilities

  • A netdevice

– Has a type { Ethernet, POS, etc}

  • Capabilities adapt on a per type basis

– Mention LFBs that can occur before/after

  • A netdevice can be connected in a topology to:

– any other netdevice for stacking purposes – Any other LFB(L2, L3 etc) determined by configuration – Receives packets from upstream LFBs or the wire – Sends packets to downstream LFBs or the wire – Up/Downstream LFBs could be other netdevices

slide-6
SLIDE 6

Other known netdevice types

  • Derived from ARP protocol identifiers

– Netrom, ax25, pronet token ring, chaosnet, arcnet, appletalk, frame

relay DLCI, ATM, metricom STRIP, IEEE1394(firewire), EUI-64, Infiniband, SLIP, CSLIP, SLIP6, CSLIP6, ROSE, AX25, HWX25, PPP, CISCO HDLC, RAW HDLC, Digital's DDCMP, IPIP tunnel, IP6IP6 tunnel, Frame Relay Access Device, SKIP virtual interface, Loopback device, Localtalk, FDDI, AP1000 BIF, SIT tunnel, IP

  • ver DDP tunnel, GRE over IP tunnel, PIMSM register interface,

HIPPI, Nexus 64Mbps Ash, Acorn Econet, Infrared, Point to point FB, FB arbitrated loop, FB public loop, FB fabric, 802.11 Prism

– Some of these maybe aggregated (example “ethernet-like”)

  • Capture here to make sure they are not lost
  • Need also to look at Interface MIB to see if can use anything
slide-7
SLIDE 7

Related LFBs in a topology

  • Relationship mapping between netdevice and
  • ther LFBs is via topology layout

– ARP – IPV4 LPM – IPV6 LPM – QoS/network scheduling – classifier – other netdevices, etc

  • Do we need a Mux right after netdevice?
slide-8
SLIDE 8

Netdevice Model: Generic attributes

  • MIB derived (RFC 2863, 1213, 2233 etc)

– ifindex – name – description – stats

  • flags

– admin, operational, loopback, point-to-point

  • device type indicator
  • mtu
slide-9
SLIDE 9

Netdevice Model:Attributes For Ethernet-like device types

addr_len L2Address broadcast_addr mc_count promiscuity allmutli Optional Link Attribs Autonegotiation, Flow Control MAC addr List Link Speed etc

slide-10
SLIDE 10

Netdevice Model: Events

  • Generally any attribute modifications could result

in an event

– Admin/Operational

  • up/down

– Protocol Address

  • Adding/Modifying/Deleting

– Any other attributes

  • Promiscuity, New MAC address etc
  • Other Forces-events

– Device created, destroyed etc

slide-11
SLIDE 11

Example topologies with netdevices

Ethernet IPV4 IPV4 Over Ethernet

SONET PML SDH Regeneration

Ethernet PPP IPV4 IPV4 over PPP Over Ethernet

Ethernet Ethernet

Bridge IPV4

Ethernet Ethernet

Bridge IPV4 L2/L3 Switching IPV4 FWD

slide-12
SLIDE 12

Example Setup

Ethernet Ethernet Bridge IPV6 Ethernet Ethernet Bridge

V6 L3 Forwarding

IPV4

V6toV4 tunnel

IPV6 Shows:

  • more layers/stacks and more netdevice types
  • Physical(ethernet), Aggregator(Bridge), Tunnel(SIT)
  • Basic protocol translations
slide-13
SLIDE 13

model definition

... <LFBClassDefs> <LFBClassDef> <name>netdevice</name> <id>6</id> <synopsis>Network device LFB</synopsis> <version>1.0</version> <derivedFrom>baseclass</derivedFrom> <capabilities> <capability> <name>NetdevCount</name> <id>1</id> <synopsis>Total Number of netdevices</synopsis> <typeRef>uint32</typeRef> <name>NetdevCapabTable</name> <id>2</id> <synopsis>Table of Capabilities for netedevs</synopsis> <array type="variable-size"> <typeRef>netdevCapab</typeRef> </array> </capability> </capabilities> <Events> .. </Events> .. <attributes> <attribute access="read-write"> <name>Netdevtable</name> <id>4</id> <synopsis>table of netdevices</synopsis> <array type="variable-size"> <typeRef>netdevdesc</typeRef> </array> </attribute> </attributes> </LFBClassDef> </LFBClassDefs> </LFBLibrary>

Has been implemented (not converted to new schema yet)

  • implementation tried only for ethernet-like netdevices
slide-14
SLIDE 14

IPV4 LFB

  • The IPv4 LFB abstraction does L3 IPV4 basic

processing

– The basic decrement ttl, validate checksum,

recompute checksum

  • This LFB is not IPV4 Forwarding although it is

related

  • It owns the multicast/unicast IPV4 addresses in a

node

– upstream LFBs pass metadata to it to select outgoing

IPV4 addresses

slide-15
SLIDE 15

IPV4 Model: Capabilities

From upstream LFB To downstream LFB

  • Implicit tight integration with ICMP
  • ICMP is the error and control path
  • Not shown is the exception path (eg processing options)
  • Really part of the LFB internals

IPV4 Error port ICMP

slide-16
SLIDE 16

IPV4 Model: Capabilities

  • Mention LFBs that can occur before/after
  • Can do multicast/unicast
slide-17
SLIDE 17

IPV4 attributes

attributes table

Address Address Address Address Address

1 2 . .

v4_local v4_address v4_mask v4_anycast v4_scope v4_prefixlen name/label rp_filter log_martians mtu etc

slide-18
SLIDE 18

IPV6 interface

Attributes table

Addres Address Address Address Address

1 2 . .