背景: Piranha是配置LVS的web工具,LVS(DR模式)+IIS架构中,主要难点是windows做为后端的服务器回环接口的安装和配置,此处主要介绍这个难点,LVS安装可以参考我前面写的文章。
环境架构说明:
环境:
操作系统 Centos 6.6 _X64 +LVS
WEB windows2008R2+ IIS
结构:
LVS-ACTIVE:10.6.1.167
LVS-BACKUP: 10.6.1.168
LVS-VIP: 10.6.1.16
Realsever: 10.6.1.58,10.6.1.59
方法如下:
- 安装虚拟网卡.
在运行中输入"hdwwiz.exe",手动从列表中添加新硬件:Windows Loopback Adapter。
2. 设置 Windows Lookback Adapter ip地址为虚拟IP地址. 设置Subnet mask: 255.255.255.255,并重命名虚拟网卡为realserver。 真实网卡一般为本地连接.
3. 修改网卡信息
以管理员身份运行以下批处理脚本,脚本如下:
++++++++++++++++++++++++++++++++++++++++++++++++
@echo off
netsh interface ipv4 set interface "realserver" weakhostreceive=enabled
netsh interface ipv4 set interface "realserver" weakhostsend=enabled
netsh interface ipv4 set interface "本地连接" weakhostreceive=enabled
netsh interface ipv4 set interface "本地连接" weakhostsend=enabled
pause
++++++++++++++++++++++++++++++++++++++++++++++++
完成。
验证
找一台机器访问http://10.6.1.16, 显示如下:
换另外一台访问同个地址, 显示如下: