- 论坛徽章:
- 0
|
已知两台服务器,均安装WIN2008 Enterprise . 双网卡 负载均衡采用单播模式 用一根网线做心跳,直接连接两台机器,两台服务器另外的网口连接CISCO 交换机 . 在交换机上划了个VLAN3 所以,交换机上的两个端口直接也分配到VLAN3了,两台服务器的外网IP分别为61.128.97.100/24(域控制器)和61.128.97.101/24(成员) VLAN3作为网关,IP为61.128.97.1 用默认路由到互联网,这个实验是通过GNS3(思科路由器模拟器)+VMWARE 做的,网络全部调试通都能彼此之间访问,用IIS分别创建两个节点,也做了DFS,都是成功的, 心跳地址分别为10.1.1.1 和10.1.1.2,,,,,做WEB负载均衡实验,用客户端系统访问集群IP总是打不开,虚拟IP为61.128.97.15 可PING通,,,,TELNET80端口也可以打开,但总是访问不了节点的WEB页面,防火墙也关闭了.各位同仁我反复配置了三天都没搞定,,,这到底是怎么回事??? 求解!!! 原本想着在本地测试好了在进机房调试,现在着急的啊~~~
以下是交换机配置清单:
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname SW
!
boot-start-marker
boot-end-marker
!
no logging console
!
no aaa new-model
!
resource policy
!
memory-size iomem 5
!
!
ip cef
no ip domain lookup
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface FastEthernet0/0
switchport access vlan 3
!
interface FastEthernet0/1
switchport access vlan 3
!
interface FastEthernet0/2
no switchport
ip address 218.84.41.2 255.255.255.0
!
interface FastEthernet0/3
!
interface FastEthernet0/4
!
interface FastEthernet0/5
!
interface FastEthernet0/6
!
interface FastEthernet0/7
!
interface FastEthernet0/8
!
interface FastEthernet0/9
!
interface FastEthernet0/10
!
interface FastEthernet0/11
!
interface FastEthernet0/12
!
interface FastEthernet0/13
!
interface FastEthernet0/14
!
interface FastEthernet0/15
!
interface Vlan1
no ip address
!
interface Vlan3
ip address 61.128.97.1 255.255.255.0
!
ip http server
no ip http secure-server
!
ip route 0.0.0.0 0.0.0.0 218.84.41.1
!
!
!
!
control-plane
!
!
!
!
!
!
!
!
!
!
line con 0
line aux 0
line vty 0 4
!
!
end
路由器配置清单:
Current configuration : 722 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Router
!
boot-start-marker
boot-end-marker
!
no logging console
!
no aaa new-model
memory-size iomem 5
ip cef
!
!
!
!
no ip domain lookup
!
multilink bundle-name authenticated
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface FastEthernet0/0
ip address 218.84.41.1 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 202.168.97.1 255.255.255.0
duplex auto
speed auto
!
ip route 0.0.0.0 0.0.0.0 218.84.41.2
!
!
ip http server
no ip http secure-server
!
!
!
!
!
!
!
control-plane
!
!
!
!
!
!
!
!
!
!
line con 0
line aux 0
line vty 0 4
!
!
end
|
|