美文网首页
[笔记] Eigrp.02基本配置&Passive interf

[笔记] Eigrp.02基本配置&Passive interf

作者: 骁珺在努力 | 来源:发表于2016-04-21 16:39 被阅读0次
Eigrp_topology.png

EIGRP基本配置

R1(config)#router eigrp ?  
  <1-65535>  Autonomous System  
  WORD   EIGRP Virtual-Instance

Autonomous System:AS号
EIGRP Virtual-Instance:命名的EIGRP实例

宣告网段

R1(config)#router eigrp 90
R1(config-router)#network ?
  A.B.C.D  Network number
R1(config-router)#network 12.1.1.1 ?
  A.B.C.D  EIGRP wild card bits
  <cr>

EIGRP wild card bits:通配符掩码(反掩码)-> 表示一个范围

通告网段给其他邻居并在该范围内激活EIGRP


举例
R1(config-router)#network 12.1.1.1 0.0.0.0  
  !-- 仅激活12.1.1.1/32,同时通告其所处的网段12.1.1.0/30

Passive interface

基本配置
R4(config)#router eigrp 90
R4(config-router)#passive-interface default 
*Mar 17 21:21:09.471: %DUAL-5-NBRCHANGE: EIGRP-IPv4 90: Neighbor 34.1.1.3 (Ethernet0/0) is down: interface passive
*Mar 17 21:21:09.473: %DUAL-5-NBRCHANGE: EIGRP-IPv4 90: Neighbor 24.1.1.2 (Serial1/1) is down: interface passive

passive-interface default :将所有接口都Passive

将非Passive接口移除

R4(config-router)#no passive-interface ethernet 0/0
*Mar 17 21:21:33.733: %DUAL-5-NBRCHANGE: EIGRP-IPv4 90: Neighbor 34.1.1.3 (Ethernet0/0) is up: new adjacency
R4(config-router)#no passive-interface s1/1
*Mar 17 21:21:43.929: %DUAL-5-NBRCHANGE: EIGRP-IPv4 90: Neighbor 24.1.1.2 (Serial1/1) is up: new adjacency
验证
R4#show ip protocols
  Routing for Networks:
    24.1.1.4/32
    24.1.2.0/24
    34.1.1.4/32
    44.1.1.0/24
  Passive Interface(s):
    Loopback0
    Loopback1
  Routing Information Sources:
    Gateway         Distance      Last Update
    24.1.1.2              90      00:00:18
    34.1.1.3              90      00:00:18
  Distance: internal 90 external 170

相关文章

  • [笔记] Eigrp.02基本配置&Passive interf

    EIGRP基本配置 Autonomous System:AS号EIGRP Virtual-Instance:命名的...

  • 010.Debian系统基本操作

    1. Debian系统基本操作 1.1 常用服务配置文件路径 网卡配置文件:/etc/network/interf...

  • Item 13: Override clone judiciou

    笔记 The Cloneable interface was intended as a mixin interf...

  • Linux 网络配置

    Linux 网络配置 目录 网络配置 网络IP配置 大多数网络设置可以通过 /etc/network/interf...

  • GitHub笔记v0.1

    GitHub笔记 1.本地配置 配置基本帐号 配置基本邮箱 --global 参数,有了这个参数,表示你这台机器上...

  • go 数据类型

    基本数据类型符合类型:array slice map function pointer struct interf...

  • 环境 | ubuntu16.04+cuda8.0+cuDnn5.

    0 笔记本配置 ubuntu16.04 基本软件安装: 环境|ubuntu16.04系统安装及基本软件配置 CPU...

  • Git 学习笔记汇总

    Git 学习笔记 --- 安装和基本配置 基本资料 GitHub地址 https://github.com/ 感谢...

  • passive

    迷恋的时刻又到了,呵呵,此刻我要种一颗种子在我的体内幻想着,任其肆意遨游着……那么是什么种子呢? 傻傻...

  • Apache基本配置笔记

    安装Apache 关于Apache的安装需要注意的一点是Apache的版本选择,安装的Apache版本要与PHP版...

网友评论

      本文标题:[笔记] Eigrp.02基本配置&Passive interf

      本文链接:https://www.haomeiwen.com/subject/qvvtrttx.html