电子文档交易市场
安卓APP | ios版本
电子文档交易市场
安卓APP | ios版本
换一换
首页 金锄头文库 > 资源分类 > PDF文档下载
分享到微信 分享到微博 分享到QQ空间

Juniper MX接口栈介绍

  • 资源ID:153336026       资源大小:474.70KB        全文页数:38页
  • 资源格式: PDF        下载积分:0金贝
快捷下载 游客一键下载
账号登录下载
微信登录下载
三方登录下载: 微信开放平台登录   支付宝登录   QQ登录  
二维码
微信扫一扫登录
下载资源需要0金贝
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
如填写123,账号就是123,密码也是123。
验证码:   换一换

 
账号:
密码:
验证码:   换一换
  忘记密码?
    
1、金锄头文库是“C2C”交易模式,即卖家上传的文档直接由买家下载,本站只是中间服务平台,本站所有文档下载所得的收益全部归上传人(卖家)所有,作为网络服务商,若您的权利被侵害请及时联系右侧客服;
2、如你看到网页展示的文档有jinchutou.com水印,是因预览和防盗链等技术需要对部份页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有jinchutou.com水印标识,下载后原文更清晰;
3、所有的PPT和DOC文档都被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;下载前须认真查看,确认无误后再购买;
4、文档大部份都是可以预览的,金锄头文库作为内容存储提供商,无法对各卖家所售文档的真实性、完整性、准确性以及专业性等问题提供审核和保证,请慎重购买;
5、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据;
6、如果您还有什么不清楚的或需要我们协助,可以点击右侧栏的客服。
下载须知 | 常见问题汇总

Juniper MX接口栈介绍

接口栈接口栈 SUMMER 理解接口栈的概念,了解接口如何创建,接口之间如何嫁 接等等,这对理解MX作为BRAS如何部署业务,如何管理 接入用户起着至关重要的作用。本文从三个方面加以阐述: 接口的类别、属性 各种典型业务情况下接口栈如何嫁接 各种典型配置和验证。 备注:为简化,本文只是为了讲述接口栈,没有涉及到接口上复杂的特性,比 如接口上的filter, QOS等等。 3 Copyright 2012 Juniper Networks, Inc. IFX IFD - The Interface Device contains the physical interface config. IFL - The Logical Interfaces. It contains the L2 protocol config and is the interfaces for forwarding and routing IFF - The Interface Family is used to configure Layer3 protocol configuration. IFA - The Interface Address is used to configure Layer3 addresses on families. 4 Copyright 2012 Juniper Networks, Inc. INTERFACE HIERARCHY (IFD) ifdev (aka IFD) One for each piece of network hardware in the system (almost) Not all IFDs have an associated physical hardware (e.g. lo0, ae0, dsc, gre, ipip, .local. Etc.) Holds most procedure handles for the device driver and device specific information Added as part of device discovery Autoconfig time for RE devices Chassisd added for PFE devices Layer 1 data structure 5 Copyright 2012 Juniper Networks, Inc. INTERFACE HIERARCHY (IFD) How do we identify IFDs in the system? By name (ge-x/y/z) x FPC slot y PIC slot z Port on the PIC The kernel maintains a patricia tree based on the IFD name By ifd index Assigned by the kernel when an IFD is created By snmp Id 6 Copyright 2012 Juniper Networks, Inc. INTERFACE HIERARCHY (IFD) Procedure handles for device driver ifd_devoutput Routine to send packet out of this interface ifd_iflinput Routine to receive packets from this interface ifd_ifdconfig Routine to configure this interface ifd_ifdstat Stats collection routine ifd_iflconfig ADD/DEL/CHG IFLs (e.g. ether_ifconfig) ifd_pfe_iflconfig PFE specific work (e.g. stats memory allocation, etc.) ifd_iffconfig Routine to add an IFF on this IFD 7 Copyright 2012 Juniper Networks, Inc. INTERFACE HIERARCHY (IFL) iflogical (aka IFL) One or more IFLs could be associated with an IFD via configuration Layer 2 data structure Incoming and outgoing data on an IFD maps onto one of the IFLs on the IFD based on the flow the data is associated with E.g. VLAN-ID, DLCI, packet IP src (for demux) etc. Added via config (DCD) and created in the kernel using the IFD specific routines (ifd_iflconfig) 8 Copyright 2012 Juniper Networks, Inc. INTERFACE HIERARCHY (IFL) How do we identify IFLs in the system By name and sub-unit e.g ge-1/2/3.0 The kernel maintains a patricia tree of IFLs at the IFD level with the above name as the key By ifl index Assigned by the kernel when an IFL is added By snmp id 9 Copyright 2012 Juniper Networks, Inc. INTERFACE HIERARCHY (IFF) iffamily (aka IFF) This is the protocol family structure One per forwarding protocol enabled on the interface It is the configured addition of a protocol family structure to an interface that enables that protocol on the interface Holds procedure handlers Protocol specific (IFA addition, next-hop addition, etc) Protocol specific and interface dependent (ARP, ND) Added via config (DCD) and created in the kernel using IFD specific routines (ifd_iffconfig) E.g inet, inet6, mpls 10 Copyright 2012 Juniper Networks, Inc. INTERFACE HIERARCHY (IFA) ifaddr (IFA) Interface address structure Zero or more of these are attached to the IFF based on configuration Addition of IFAs will trigger the creation of routes to make the address configuration functional 11 Copyright 2012 Juniper Networks, Inc. INTERFACE HIERARCHY (CONTD) Odd cases Aggregate Ethernets ae0 ifd is pseudo Several physical ges constitute the actual hardware Dependencies need to take care of this PPP and demux ifls Concept of underlying interface that represents the actual interface Dependencies need to take care of this hierarchy 12 Copyright 2012 Juniper Networks, Inc. ifstate historically meant “interface state” One single instance of each object in the state chain Hierarchical dependencies showed by red arrows Consumers only see last state of each object Continuous flapping events are only reflected in the object states unit 1 vlan-id 101; family inet filter input test-filter; fe-0/3/3 vlan-tagging; gratuitous-arp-reply; address 1.1.1.1/24; IFD (Interface Device) IFL (Interface Logical) IFF (Interface Family) IFA (Interface Address) INTERFACE TERMINOLOGY 13 Copyright 2012 Juniper Networks, Inc. ifstate entries generated by custom event sequence Every CLI set command is followed by a configuration commit. IFD addPIC 0/3 boots set interfaces fe-0/3/3 vlan-tagging set interfaces fe-0/3/3 unit 1 vlan-id 101 set interfaces fe-0/3/3 unit 1 family inet set interfaces fe-0/3/3 unit 1 family inet address 1.1.1.1/24 set firewall family inet filter test-filter term single then accept set

注意事项

本文(Juniper MX接口栈介绍)为本站会员(I***)主动上传,金锄头文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即阅读金锄头文库的“版权提示”【网址:https://www.jinchutou.com/h-59.html】,按提示上传提交保证函及证明材料,经审查核实后我们立即给予删除!

温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。

分享当前资源【Juniper MX接口栈介绍】到朋友圈,您即可以免费下载此资源!
微信扫一扫分享到朋友圈
二维码
操作提示:任选上面一个二维码,打开微信,点击“发现”使用“扫一扫”,即可将选择的网页分享到朋友圈
您可能感兴趣的------------------------------------------------------------------------------------------------------



关于金锄头网 - 版权申诉 - 免责声明 - 诚邀英才 - 联系我们
手机版 | 川公网安备 51140202000112号 | 经营许可证(蜀ICP备13022795号)
©2008-2016 by Sichuan Goldhoe Inc. All Rights Reserved.