Добавил:
Upload Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
Глава№9_Eigrp.doc
Скачиваний:
22
Добавлен:
27.09.2019
Размер:
964.1 Кб
Скачать

Ручная суммаризация. Руководство

  1. Запишите сети, вы хотите суммировать в двоичной системе.

  2. Чтобы найти маску подсети для обобщения, начнем с самого левого бита.

  3. Двигаясь вправо считаем все биты, равные для всех суммируемых маршрутов.

  4. Когда встретятся биты, которые не совпадают, остановитесь. Мы дошли до границы суммирования.

  5. Теперь посчитайте количество левых соответствующих битов. Это число становится маской подсети для суммированного маршрута.

  6. Чтобы найти адрес обобщенной сети, начиная с бита, который не совпал, написать в адресе все нули.

Чтобы установить EIGRP обобщенную суммаризацию на всех интерфейсах, которые посылают пакеты EIGRP, используйте следующие команды интерфейса:

Router(config-if)#ip summary-address eigrp as-number network-address subnet-mask

Если маршрутизатор имеет несколько соседей, то обобщенная суммаризация должна быть настроена у всех из них на интерфейсах Serial0/0/0 и 0/0/1 последовательно.

Обобщенная маршрутизация требует меньшего значения пропускной способности для обновления маршрутизации, поскольку один маршрут может быть отправлен вместо нескольких отдельных маршрутов.

Протокол статической маршрутизации по умолчанию

Использование статического маршрута 0.0.0.0 / 0 в качестве маршрута по умолчанию, не зависит от протокола маршрутизации.

Статический маршрут по умолчанию, как правило, настроен на маршрутизатор, который имеет подключение к сети за пределами домена EIGRP маршрутизации, например, в ISP.

Примечание: статический маршрут по умолчанию использует выход интерфейса Loopback1.

Запись статического маршрута по умолчанию на R1 выглядит следующим образом:

D*EX 0.0.0.0/0 [170/3651840] via 192.168.10.6, 00:01:08, Serial0/1:

  • D - это статический маршрут был получен от обновления EIGRP маршрутизации.

  • *- Маршрут является кандидатом на маршрут по умолчанию.

  • EX — внешний EIGRP маршрут, в этом случае статический маршрут находится за пределами домена EIGRP маршрутизации.

  • 170 - это административное расстояние внешнего EIGRP маршрут.

Маршруты по умолчанию обеспечивают путь к адресам, находящимся вне области маршрутизации и, как и суммирование маршрутов, помогает свести к минимуму число записей в таблице маршрутизации.

Тонкости настройки EIGRP

Для изменения конфигураций пропускной способности, Hello интервалов и времени удержания используются следующие команды соответсвенно:

Выводы

EIGRP (Enhanced Interior Gateway Routing Protocol) is a classless, distance vector routing protocol released in 1992 by Cisco Systems. EIGRP is a Cisco proprietary routing protocol and an enhancement of another Cisco propriety protocol IGRP (Interior Gateway Routing Protocol). IGRP is a classful, distance vector routing protocol which is no longer supported by Cisco. EIGRP uses the source code of "D" for DUAL in the routing table. EIGRP has a default administrative distance of 90 for internal routes and 170 for routes imported from an external source, such as default routes.

EIGRP used PDMs (Protocol Dependent Modules) giving it the capability to support different Layer 3 protocols including IP, IPX and AppleTalk. EIGRP uses RTP (Reliable Transport Protocol) as the Transport layer protocol for the delivery of EIGRP packets. EIGRP uses reliable delivery for EIGRP updates, queries and replies; and uses unreliable delivery for EIGRP hellos and acknowledgments. Reliable RTP means an EIGRP acknowledgment must be returned.

Before any EIGRP updates are sent, a router must first discover their neighbors. This is done with EIGRP hello packets. On most networks EIGRP sends hello packets every 5 seconds. On multipoint nonbroadcast multiaccess networks (NBMA) such as X.25, Frame Relay, and ATM interface with access links of T1 (1.544 Mbps) or slower, Hellos are sent every 60 seconds. The hold time is three times the hello, or 15 seconds on most networks and 180 seconds on low speed NBMA networks.

The hello and hold-down values do not need to match for two routers to become neighbors. The show ip eigrp neighbors command is used to view the neighbor table and verify that EIGRP has established an adjacency with its neighbors.

EIGRP does not send periodic updates like RIP. EIGRP sends partial or bounded updates, which includes only the route changes and only to those routers that are affected by the change. EIGRP composite metric uses bandwidth, delay, reliability and load to determine best path. By default only bandwidth and delay are used. The default calculation is the slowest bandwidth plus the sum of the delays of the outgoing interfaces from the router to the destination network.

At the center of EIGRP is DUAL (Diffusing Update Algorithm). The DUAL finite state machine is used to determine best path and potential backup paths to every destination network. The successor is a neighboring router that is used to forward the packet using the least-cost route to the destination network. Feasible distance (FD) is the lowest calculated metric to reach the destination network through the successor. A feasible successor (FS) is a neighbor who has a loop-free backup path to the same network as the successor, and also meets the feasibility condition. The feasibility condition (FC) is met when a neighbor's reported distance (RD) to a network is less than the local router's feasible distance to the same destination network. The reported distance is simply an EIGRP neighbor's feasible distance to the destination network.

EIGRP is configured with the router eigrp autonomous-system command. The autonomous-system value is actually a process-id and must be the same on all routers in the EIGRP routing domain. The network command is similar to that used with RIP. The network is the classful network address of the directly connected interfaces on the router. A wildcard mask is an optional parameter that can be used to include only specific interfaces.

There are several ways to propagate a static default route with EIGRP. The redistribute static command in EIGRP router mode is a common method.