特别值得一提的是Linux bridge有很多值得学习的地方,这里我们主要介绍Linux bridge,包括介绍Linux bridge等方面。Linux bridge 下流量控制等 (Netemulator,tc)

netem provides Network Emulation functionality for testing protocols by emulating the properties of wide area networks. The current version emulates variable delay, loss, duplication and re-ordering.

If you run a current 2.6 distribution, (Fedora, OpenSuse, Gentoo, Debian, Mandriva, Ubuntu), then netem is already enabled in the kernel and a current version of iproute2 is included. The netem kernel component is enabled under:

Networking -->   Networking Options -->     QoS and/or fair queuing -->        Network emulator
端口延时命令

# tc qdisc add dev eth0 root netem delay 100ms表示对端口廷时100ms# tc qdisc del dev eth0 root netem delya 100ms表示对端口廷时命令删除

# tc qdisc change dev eth0 root netem delay 100ms 10ms表示对改变端口廷时命100ms ± 10ms 延时范围(90到110)# tc qdisc change dev eth0 root netem delay 100ms 10ms 25%表示廷时范围100ms ± 10ms * 25%

端口丢包命令:# tc qdisc change dev eth0 root netem loss 0.1%丢包率为0。1%# tc qdisc change dev eth0 root netem loss 0.3% 25%丢包率为范围(0。3% 25%)[edit][ed数据包副本命令# tc qdisc change dev eth0 root netem duplicate 1%

数据包副本率 1%[edit] [edi数据包分发命令# tc qdisc change dev eth0 root netem gap 5 delay 10ms数据包重发每格5的整数倍的包将不被延时。其它的将延时10ms
[edit] 速率控制命令:两条命令共同完成

  1. tc qdisc add dev eth0 root handle 1:0 netem delay 100ms  
  2. tc qdisc add dev eth0 parent 1:1 handle 10: tbf rate 256kbit buffer 1600 limit 3000   
  3. tc -s qdisc ls dev eth0 ----查看规则信息。  
  4. tc qdisc show 

更多帮助# tc help , tc qdisc help以上是建立速率控制命令规则。Linux bridge红色部分为限制包数量可去掉清除规则命令:tc qdisc del dev eth0 root

完毕后可以先试试Linux bridge的基本命令:(这是可以把此主机看到两个端口的HUB )

  1. brctl addbr mybridge (创建bridge mybridge,然后用ifconfig查看会发现多了一个mybridge端口)   
  2. brctl addif mybridge eth0    
  3. brctl addif mybridge eth1 (把eth0和eth1包含到mybridge中)  

然后需要对各端口做以下动作

  1. ifconfig eth0 0.0.0.0 promisc    
  2. ifconfig eth1 0.0.0.0 promisc(打开混杂模式)  
  3. ifconfig mybridge up(启动网桥) 

原文见:http://blog.sina.com.cn/s/blog_559f6ffc0100ime6.html
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐