
http://blog.csdn.net/yanziguishi/article/details/7284793 Linux环境 CentOS 5.5 名词 LVS : Linux Virtual Server IPVS : IP Virtual Server,IPVS 是 LVS 实现的关键。 IPVS connection hash table : IPVS连接哈希表,用来“跟踪”进来、出去的网络包(for input and output packets lookups of IPVS)。 ip_vs_conn 结构体: 定义在内核档 include/net/ip_vs.h 中。该结构体(对象)是 IPVS 的调度对象。在 32 位系统上 128字节,64位系统上 192 字节。 IPVS connection hash table 内核中的代码:net/netfilter/ipvs/ip_vs_conn.c int ip_vs_conn_tab_bits; 编译时可以定,Kconfig文件中说明该值的大小应该在 […]