- 论坛徽章:
- 0
|
[root@LVS-DR-MASTER ~]# vi /etc/keepalived/keepalived.conf
! Configuration File for keepalived
global_defs {
notification_email {
acassen@firewall.loc
}
notification_email_from Alexandre.Cassen@firewall.loc
smtp_server 127.0.0.1
smtp_connect_timeout 30
router_id LVS_DEVEL
}
vrrp_instance VI_1 {
state BACKUP
interface eth0
virtual_router_id 51
priority 99
advert_int 1
authentication {
auth_type PASS
auth_pass 1111
}
virtual_ipaddress {
172.16.214.190
}
}
virtual_server 172.16.214.190 80 {
delay_loop 6
lb_algo rr
lb_kind NAT
nat_mask 255.255.255.0
persistence_timeout 50
protocol TCP
real_server 172.16.214.135 80 {
weight 1
TCP_CHECK {
connect_timeout 3
nb_get_retry 3
delay_before_retry 3
connect_port 80
}
}
real_server 172.16.214.134 80 {
weight 1
TCP_CHECK {
connect_timeout 3
nb_get_retry 3
delay_before_retry 3
connect_port 80
}
}
}
[root@LVS-DR-MASTER network-scripts]# ip address
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 1000
link/ether 00:0c:29:28:72:51 brd ff:ff:ff:ff:ff:ff
inet 172.16.214.131/24 brd 172.16.214.255 scope global eth0
inet 172.16.214.190/32 scope global eth0
inet6 fe80::20c:29ff:fe28:7251/64 scope link
valid_lft forever preferred_lft forever
3: sit0: <NOARP> mtu 1480 qdisc noop
link/sit 0.0.0.0 brd 0.0.0.0
[root@LVS-DR-MASTER network-scripts]#
真实服务器:
[root@REALSERVER1 ~]# vi /etc/init.d/realserver_nat
#!/bin/bash
VIP=172.16.214.190
case "$1" in
start)
route add default gw $VIP eth0
;;
stop)
route del default gw $VIP eth0
;;
*)
echo "Usage 0 {start|stop}"
exit 1
esac
[root@LVS-DR-SLAVE ~]# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
172.16.214.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth0
0.0.0.0 172.16.214.2 0.0.0.0 UG 0 0 0 eth0
[root@LVS-DR-SLAVE ~]#
[root@LVS-DR-SLAVE ~]# ip address
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 1000
link/ether 00:0c:29:11:0a:57 brd ff:ff:ff:ff:ff:ff
inet 172.16.214.133/24 brd 172.16.214.255 scope global eth0
inet6 fe80::20c:29ff:fe11:a57/64 scope link
valid_lft forever preferred_lft forever
3: sit0: <NOARP> mtu 1480 qdisc noop
link/sit 0.0.0.0 brd 0.0.0.0
[root@LVS-DR-SLAVE ~]#
[root@LVS-DR-MASTER network-scripts]# watch ipvsadm -ln
Every 2.0s: ipvsadm -ln Sat Dec 17 09:54:24 2011
IP Virtual Server version 1.2.1 (size=4096)
Prot LocalAddress ort Scheduler Flags
-> RemoteAddress ort Forward Weight ActiveConn InActConn
TCP 172.16.214.190:80 rr persistent 50
-> 172.16.214.135:80 Masq 1 0 0
-> 172.16.214.134:80 Masq 1 0 0
[root@LVS-DR-MASTER network-scripts]# cat /proc/sys/net/ipv4/ip_forward
1
selinux 已经disabled
iptable也已经关闭!
这样,我访问可以ping通 VIP,但是无法通过VIP访问80端口,也就是是nginx
但是master可以自动删除无效的服务器!
大家帮忙分析一下问题!
小弟,谢谢大家。。
|
|