企业软件热点文章 | |
linux强制位与冒险位的技巧介绍 | 巧妙调色 别让Win7的华丽灼伤你的双眸 |
Name名称
brctl - ethernet bridge administration brctl - 以太网桥管理
Synopsis简介
brctl [command] brctl [命令]
Description描述
brctl is used to set up, maintain, and inspect the ethernet bridge configuration in the linuxkernel.brctl是用于建立,维护和检查Linux内核的以太网桥配置研究。
An ethernet bridge is a device commonly used to connect different networks of ethernets together, so that these ethernets will appear as one ethernet to the participants.一个以太网是以太网桥设备以及常用的不同的网络连接,使这些以太网将作为一个以太网的参与者。
Each of the ethernets being connected corresponds to one physical interface in the bridge.目前的以太网连接各对应一个物理接口的桥梁。 These individual ethernets are bundled into one bigger ('logical') ethernet, this bigger ethernet corresponds to the bridge network interface.这些个别以太网是以太网捆绑成一个更大的('逻辑')以太网,这对应于更大桥网络接口。
Instances实例
The command brctl addbr
The command brctl delbr
The command brctl show shows all current instances of the ethernet bridge.命令brctl显示显示当前所有的以太网桥的实例。
Ports端口
Each bridge has a number of ports attached to it.每个桥有一个连接到它的端口数。 Network traffic coming in on any of these ports will be forwarded to the other ports transparently, so that the bridge is invisible to the rest of the network (ie it will not show up in traceroute
The command brctl addif
The command brctl delif
The command brctl show
Ageing老龄化
The bridge keeps track of ethernet addresses seen on each port.这座桥的以太网保持跟踪每个端口看到地址。 When it needs to forward a frame, and it happens to know on which port the destination ethernet address (specified in the frame) is located, it can 'cheat' by forwarding the frame to that port only, thus saving a lot of redundant copies and transmits.当它需要提出一个框架,它发生在哪个端口知道目标以太网地址(框架中指定)的位置,它可以'欺骗'的帧转发到该端口只,从而节省了大量的冗余拷贝与传输。
However, the ethernet address location data is not static data.然而,以太网地址位置数据不是静态数据。 Machines can move to other ports, network cards can be replaced (which changes the machine's ethernet address), etc.机器可以转移到其他港口,网络卡可以更换(从而改变了机器的以太网地址)等
brctl showmacs
brctl setageingtime
brctl setgcint
Spanning Tree Protocol生成树协议
Multiple ethernet bridges can work together to create even larger networks of ethernets using the IEEE 802.1d spanning tree protocol.多个以太网桥可以共同创造更大的网络,以太网使用IEEE 802.1D生成树协议。 This protocol is used for finding the shortest path between two ethernets, and for eliminating loops from the topology.这个协议是用来找出两个以太网之间的最短路径,拓扑结构和消除循环的。 As this protocol is a standard, linux bridges will interwork properly with other third party bridge products.由于此协议是一个标准,Linux的桥梁将妥善互通的桥梁与其他第三方产品。 Bridges communicate with eachother by sending and receiving BPDUs (Bridge Protocol Data Units).桥梁沟通海誓山盟通过发送和接收BPDUs讯息(桥协议数据单元)。 These BPDUs can be recognised by an ethernet destination address of 01:80:c2:00:00:00.这些BPDUs讯息可识别以太网目标地址的01:80:c2的:00:00:00。
The spanning tree protocol can also be turned off (for those situations where it just doesn't make sense, for example when this linux box is the only bridge on the LAN, or when you know that there are no loops in the topology.)生成树协议还可以关闭意识(对于那些情况下它只是不作,例如在Linux机器这是唯一的桥梁,或当在局域网上,你知道,有没有循环中的拓扑。)
brctl (8) can be used for configuring certain spanning tree protocol parameters. brctl(8)可用于配置某些生成树协议参数。 For an explanation of these parameters, see the IEEE 802.1d specification (or send me an email).对于这些参数的解释,看到了IEEE 802.1d的规格(或向我发送电子邮件)。 The default values should be just fine.默认值应该只是罚款。 If you don't know what these parameters mean, you probably won't feel the desire to tweak them.如果你不知道这些参数的意思是,你可能不会觉得他们的愿望来调整。
brctl stp
brctl setbridgeprio
brctl setfd
brctl sethello
brctl setmaxage
brctl setpathcost
brctl setportprio
本文来源:中国IT实验室 作者:佚名