博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LVS DR模式 RealServer 为 Windows 2008 R2配置
阅读量:6330 次
发布时间:2019-06-22

本文共 765 字,大约阅读时间需要 2 分钟。

有3篇文档详细介绍

在Windows Server上需要做下面的配置:

1、安装microsoft loopback adapter。

2、配置microsoft loopback adapter IP地址为VIP地址,子网掩码配置为255.255.255.255,

3、在命令行下修改客户端网卡接口,环回接口连接模式:

其次,在cmd里面输入以下命令:

netsh interface ipv4 set interface "extranet" weakhostreceive=enabled

netsh interface ipv4 set interface "extranet" weakhostsend=enabled

netsh interface ipv4 set interface "intranet" weakhostreceive=enabled

netsh interface ipv4 set interface "intranet" weakhostsend=enabled

netsh interface ipv4 set interface "loopback" weakhostreceive=enabled

netsh interface ipv4 set interface "loopback" weakhostsend=enabled

windows 2008的默认中,网卡的stronghost处于启用状态,这个设置可以防止跨接口转发数据包,这就表明:来自一个网络适配器的请求不会被环回适配器处理,因为这个请求来自于不同的网络适配器。为了将环回适配器从stronghost切换为weakhost,需要运行以上四条命令,要不然TCP的状态会一直处于SYN_RECV 状态, 强弱主机的参看

转载地址:http://szfoa.baihongyu.com/

你可能感兴趣的文章
算法导论读书笔记-第十九章-斐波那契堆
查看>>
Nodepad++ 资料整理
查看>>
Mysql表大小数据大小索引大小查询
查看>>
CIE-LUV是什么颜色特征
查看>>
apache服务器安装配置启停[CentOS]
查看>>
StanFord ML 笔记 第四部分
查看>>
Number Sequence HDU - 1711 (Hash或KMP)
查看>>
Python爬虫实例:糗百
查看>>
【转】iOS:堆(heap)和栈(stack)的理解--简介
查看>>
PDO的使用
查看>>
docker for zabbix
查看>>
Sass与Compress实战:第二章
查看>>
标准架构~业务层到底是否应该关注数据持久化的方式
查看>>
css3 各种纸张贴纸效果
查看>>
js取整
查看>>
1021 Deepest Root
查看>>
ReactJs入门教程
查看>>
mssql触发器示例
查看>>
Java算法练习——正则表达式匹配
查看>>
[国家集训队]航班安排
查看>>