我安装LVS时遇到的问题,请高手指点。

我想做一个LVS相关的试验,可是我在做的时候却总是不能成功,不知哪位高手能指点一下。
我的步骤如下:
1.下载内核,ipvs
2.安装内核源码
把linux-2.4.20.tar.gz解压到/usr/src目录,生成了/usr/src/linux-2.4.20目录,在/usr/src下建立一个连接 ln –s linux-2.4.20 linux。
3.把ipvs-1.0.9.tar.gz解压缩到/test,生成了/test/ipvs-1.0.9目录;进入/test/ipvs-1.0.9,依次执行如下命令:
make patchkernel
make installsource
4 重新编译支持ipvs的内核
进入/usr/src/linux目录,分别执行:
make mrproper
make menuconfig
接着问题就来了,我在“Networking options”选项中并没有发现“IP: Virtual Server Configuration”选项。
当然这些都是我从网上看来的,不知道问题在哪。望各位大侠指点。

Comments

用2.6内核的吧,默认已经支持的了

在比较新的Linux内核2.4和2.6中已有IPVS代码,不再需要打补丁了。

配置菜单大致如下:

Code maturity level options --->
    [*] Prompt for development and/or incomplete code/drivers

Networking options --->
    [*] Network packet filtering (replaces ipchains)
    [ ]   Network packet filtering debugging
    ...
      IP: Netfilter Configuration  --->
      IP: Virtual Server Configuration  --->
	<M> virtual server support (EXPERIMENTAL)
	[*]   IP virtual server debugging
	(12)   IPVS connection table size (the Nth power of 2)
	--- IPVS scheduler
	<M>   round-robin scheduling
	<M>   weighted round-robin scheduling
	<M>   least-connection scheduling scheduling
	<M>   weighted least-connection scheduling
	<M>   locality-based least-connection scheduling
	<M>   locality-based least-connection with replication scheduling
	<M>   destination hashing scheduling
	<M>   source hashing scheduling
	--- IPVS application helper
	<M>   FTP protocol helper

内核编译完后重启就出现问题了。

randomness