f5 big-ip

价格:big-ip 6400的价格在16万元人民币左右。
lvs(linux virtual server)
简介:软件四层交换。lvs是在linux内核中作四层交换,只花128个字节记录一个连接信息,不涉及到文件句柄操作,故没有65535最大文件句柄数的限制。lvs性能很高,可以支持100~400万条并发连接。
价格:免费、开源
l7sw(layer7 switching)
简介:软件七层交换。这是一款类似lvs的新负载均衡软件,我没有实际应用过,性能未知,因此不作评价。这是它的英文介绍:layer7 switching is driving a low-level engine using networking design to speed-up forwarding of data stream. implementation in this project is split into a userspace daemon and a low-level kernelspace forwarding engine. userspace daemon is responsible for scheduling and switching decisions. kernelspace forwarding engine is responsible for forwarding stream and using tcp-splicing scheme. tcp-splicing is the postponement of the connection between the client and the server in order to obtain sufficient information to make a routing decision. this project is close to linux virtual server project since lot of discusions on this topics have been made online and offline lvs project.
haproxy
简介:软件七层交换,反向代理服务器。目前还不支持虚拟主机,但其配置简单,拥有非常不错的服务器健康检查功能,当其代理的后端服务器出现故 障,haproxy会自动将该服务器摘除,故障恢复后再自动将该服务器加入。另外,haproxy还支持双机热备。我曾经用过一段时间,能支持2~3万条 并发连接。现在我用它做普通的小并发负载均衡,主要用到的是它的服务器健康检查功能。
nginx
简介:软件七层交换,反向代理服务器。能够很好地支持虚拟主机,可配置性很强,可以按url做负载均衡。我目前一直在用,大约能支持3~5万条并发连接。