Difference between revisions of "Cisco EIGRP"

From HackerNet
Jump to: navigation, search
m
Line 9: Line 9:
 
* Hello packet - Multicast 224.0.0.10, every 5 seconds.  
 
* Hello packet - Multicast 224.0.0.10, every 5 seconds.  
 
* AS nummer måste vara samma på alla routrar.
 
* AS nummer måste vara samma på alla routrar.
 +
* K values need to match in EIGRP AS domain in order for neighbours to form
 +
 +
==Metric==
 +
* k1 = bandwidth
 +
* k2 = load
 +
* k3 = delay
 +
* k4 = reliability
 +
* k5 = MTU
 +
Simplified default metric = bandwidth + delay
  
 
=Konfiguration=
 
=Konfiguration=
Line 35: Line 44:
 
Summering
 
Summering
 
  ip eigrp summary-address 192.168.0.0 255.255.0.0
 
  ip eigrp summary-address 192.168.0.0 255.255.0.0
 +
 +
4 paths default, 16 maximum
 +
maximum-paths 12
 +
 +
Receive updates only
 +
eigrp stub receive-only
  
 
=Redistribution=
 
=Redistribution=

Revision as of 12:14, 7 December 2015

EIGRP är ett distance vector routing protokoll med en del karaktär av link state protocol. EIGRP använder ett eget protokoll på lager 4, Reliable Transport Protocol. För topologiuträkningar används DUAL.

Databaser

  • Neighbor table
  • Topology table
  • Routing (Forwarding) table

Adjacency

  • Hello packet - Multicast 224.0.0.10, every 5 seconds.
  • AS nummer måste vara samma på alla routrar.
  • K values need to match in EIGRP AS domain in order for neighbours to form

Metric

  • k1 = bandwidth
  • k2 = load
  • k3 = delay
  • k4 = reliability
  • k5 = MTU

Simplified default metric = bandwidth + delay

Konfiguration

router eigrp [ASN]

Manually set ID

eigrp router-id [ip-address]

Add networks to advertise

network [ip-address] [wildcard-mask]

Disable automatic route summarization (Default sedan IOS 15)

no auto-summary

Designate passive interfaces

passive-interface [interface]

Statically identify neighoring routers

neighbor [ip-address] [interface]

MD5 authentication

interface [interface]
ip authentication mode eigrp md5
ip authentication key-chain eigrp [ASN] [name-of-chain]

Summering

ip eigrp summary-address 192.168.0.0 255.255.0.0

4 paths default, 16 maximum

maximum-paths 12

Receive updates only

eigrp stub receive-only

Redistribution

Default seed metric: infinity

Static

redistribute static

RIP

redistribute rip metric 1500 100 255 1 1500

OSPF

redistribute ospf 1

Show

show ip eigrp neighbors 
show ip eigrp topology
show ip eigrp interfaces detail
show ip eigrp traffic
show ip protocols