标签:interface windows linux 本地连接 网络
linux中在lo上绑定vip比较简单,windows也不难。
首先打开运行——>输入hdwwiz会弹出添加设备:
在lo中绑定好vip地址以后,还需要做一项工作,至关重要!!!
编写脚本:test.bat
@echo off netsh interface ipv4 set interface "realserver" weakhostreceive=enabled netsh interface ipv4 set interface "realserver" weakhostsend=enabled netsh interface ipv4 set interface "本地连接 2" weakhostreceive=enabled netsh interface ipv4 set interface "本地连接 2" weakhostsend=enabled pause
注:realserver为本机新建lo网络的名称,本地连接2位网络自动的网络名称,这两个名字自行修改即可。
本文出自 “王家东哥” 博客,谢绝转载!
标签:interface windows linux 本地连接 网络
原文地址:http://xiaodongge.blog.51cto.com/11636589/1928932