EIGRP 命名模式新增功能
1、为所有 eigrp 内部路由设置tag:
只为本机传出的(范围就是 offset-list out 的那个范围),每台机器都能单独设置一个
router eigrp EIGRP add ipv4 auto 4839 eigrp default-route-tag 10.10.10.10# tag 可以配置点分十进制格式,但是show查看时默认不会这样显示,想要让它显示为点分十进制格式,需要配置一条全局命令:route-tag notation dotted-decimal
2、64位宽度度量值:
router eigrp CORE address-family ipv4 autonomous-system 100 metric rib-scale 128
3、接口新增 sha256 身份认证:
但是它可以指定 key chain,所以比较鸡肋,直接用key chain也有sha256认证,甚至有更安全的512
router eigrp EIGRP add ipv4 au 4839 af g0/0 authentication mode hmac-sha-256 Skills39