Linux内核配置双网卡桥接,linux下打造双网卡桥接 -电脑资料

of the ethernet bridge. 命令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 http://translate.googleusercontent.com/translate_c?hl=zh-CN&langpair=en%7Czh-CN&u=http://linux.die.net/man/8/traceroute&rurl=translate.google.com.hk&usg=ALkJrhgJakROF--e1An0sDTvEZMCZO7DQA> (8) ).未来的网络流量在这些港口的任何会被转发到其他港口透明,使无形的桥梁,是网络的其余部分的(即它不会出现在了的traceroute (8))。

The command brctl addif will make the interface a port of the bridge .该命令brctl addif 将使接口1 港口桥。 This means that all frames received on will be processed as if destined for the bridge.这意味着在收到的所有帧将被处理,好像注定了桥梁。 Also, when sending frames on , will be considered as a potential output interface.此外,在发送框架上,将被视为一个潜在的输出接口。

The command brctl delif will detach the interface from the bridge .该命令brctl delif 将分离的桥梁接口从。

The command brctl show will show some information on the bridge and its attached ports.该命令将显示brctl显示一些端口信息的桥梁及其附属。

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 shows a list of learned MAC addresses for this bridge. showmacs brctl显示的MAC地址列表获悉此桥。

brctl setageingtime sets the ethernet (MAC) address ageing time, in seconds. brctl setageingtime 设置MAC)地址老化时间,以秒以太网(。 After seconds of not having seen a frame. coming from a certain address, the bridge will time out (delete) that address from the Forwarding DataBase (fdb).经过一定的地址电脑资料《linux下打造双网卡桥接》(https://www.unjs.com)。

brctl setgcint sets the garbage collection interval for the bridge to seconds. brctl setgcint 设置为。 This means that the bridge will check the forwarding database for timed out entries every seconds.这意味着,大桥将检查  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 controls this bridge instance's participation in the spanning tree protocol. brctl污水处理厂控制此桥实例的协议参与生成树。 If is "on" or "yes" the STP will be turned on, otherwise it will be turned off.如果是“开”或“是”的污水处理厂将被打开,否则将被关闭。 When turned off, the bridge will not send or receive BPDUs, and will thus not participate in the spanning tree protocol.当关闭时,桥将不会发送或接收BPDUs讯息,并因此不参与生成树协议。 If your bridge isn't the only bridge on the LAN, or if there are loops in the LAN's topology, DO NOT turn this option off.如果你的桥是不是在局域网上的唯一桥梁,或者有在局域网的拓扑结构的循环,不要关闭此选项。 If you turn this option off, please know what you are doing.如果你关闭此选项,请知道自己在做什么。

brctl setbridgeprio sets the bridge's priority to . brctl setbridgeprio 设置桥的优先。 The priority value is an unsigned 16-bit quantity (a number between 0 and 65535), and has no dimension.优先级值是一个无符号16位的数量(1 0和65535之间的数字),没有任何方面。 Lower priority values are 'better'.低优先级值是'好'。 The bridge with the lowest priority will be elected 'root bridge'.最低的优先大桥将是当选'根桥'。

brctl setfd sets the bridge's 'bridge forward delay' to seconds. brctl setfd 设置桥梁的'桥向前延迟'来

brctl sethello sets the bridge's 'bridge hello time' to seconds. brctl sethello 设置桥梁的'桥你好时间'来

brctl setmaxage sets the bridge's 'maximum message age' to seconds. brctl setmaxage 设置桥梁的'年龄最大的信息'来

brctl setpathcost sets the port cost of the port to . brctl setpathcost 设置端口。 This is a dimensionless metric.这是一个无量纲指标。

brctl setportprio sets the port 's priority to . brctl setportprio 设置端口。 The priority value is an unsigned 8-bit quantity (a number between 0 and 255), and has no dimension.优先级值是一个无符号8位的数量(0至255个号码和),并没有尺寸。 This metric is used in the designated port and root port selection algorithms.该指标用于在指定端口和根端口选择算法。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值