LVSDR模式启动脚本-创新互联

LVS DR模式启动脚本
1、DR脚本:
[root@ipvs ~]# cat /etc/rc.local
#!/bin/sh
#

创新互联公司坚持“要么做到,要么别承诺”的工作理念,服务领域包括:成都网站建设、成都网站设计、企业官网、英文网站、手机端网站、网站推广等服务,满足客户于互联网时代的永顺网站设计、移动媒体设计的需求,帮助企业找到有效的互联网解决方案。努力成为您成熟可靠的网络建设合作伙伴!

This script will be executed after all the other init scripts.

You can put your own initialization stuff in here if you don't

want to do the full Sys V style init stuff.

touch /var/lock/subsys/local
#/usr/local/apache/bin/apachectl -f /usr/local/apache/conf/httpd.conf -k start
/root/dr_start.sh
[root@ipvs ~]# cat dr_start.sh
#!/bin/bash

ifconfig eth0:0 192.168.1.100
ipvsadm -A -t 192.168.1.100:80 -s wlc
ipvsadm -a -t 192.168.1.100:80 -r 192.168.1.102:80 -g -w 2
ipvsadm -a -t 192.168.1.100:80 -r 192.168.1.105:80 -g -w 1
ipvsadmin -Ln

2、realserver脚本:
[root@web100 ~]# cat /etc/rc.local
#!/bin/sh
#

This script will be executed after all the other init scripts.

You can put your own initialization stuff in here if you don't

want to do the full Sys V style init stuff.

touch /var/lock/subsys/local
#/usr/local/apache/bin/apachectl -f /usr/local/apache/conf/httpd.conf -k start
/root/rs_start.sh
[root@web100 ~]# cat rs_start.sh
#!/bin/bash

echo 1 > /proc/sys/net/ipv4/conf/all/arp_ignore
echo 1 > /proc/sys/net/ipv4/conf/lo/arp_ignore
echo 2 > /proc/sys/net/ipv4/conf/lo/arp_announce
echo 2 > /proc/sys/net/ipv4/conf/all/arp_announce
ifconfig lo:0 192.168.1.100 netmask 255.255.255.255
route add -host 192.168.1.100 dev lo:0
ifconfig
route -n

VIP和RIP不在同一网段:
LVS DR模式启动脚本
gateway配置:
[root@gateway ~]# ip addr
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
link/ether 00:0c:29:eb:92:bc brd ff:ff:ff:ff:ff:ff
inet 192.168.1.102/24 brd 192.168.1.255 scope global eth0
inet6 fe80::20c:29ff:feeb:92bc/64 scope link
valid_lft forever preferred_lft forever
3: eth2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
link/ether 00:0c:29:eb:92:c6 brd ff:ff:ff:ff:ff:ff
inet 192.168.11.102/24 brd 192.168.11.255 scope global eth2
inet6 fe80::20c:29ff:feeb:92c6/64 scope link
valid_lft forever preferred_lft forever
4: eth3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
link/ether 00:0c:29:eb:92:d0 brd ff:ff:ff:ff:ff:ff
inet 192.168.10.102/24 brd 192.168.10.255 scope global eth3
inet6 fe80::20c:29ff:feeb:92d0/64 scope link
valid_lft forever preferred_lft forever

[root@gateway ~]# sysctl -p
net.ipv4.ip_forward = 1

[root@gateway ~]# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
192.168.11.0 0.0.0.0 255.255.255.0 U 0 0 0 eth2
192.168.10.0 0.0.0.0 255.255.255.0 U 0 0 0 eth3
169.254.0.0 0.0.0.0 255.255.0.0 U 1002 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 U 1003 0 0 eth2
169.254.0.0 0.0.0.0 255.255.0.0 U 1004 0 0 eth3

192.168.1.101.61378 > 192.168.11.10.http: Flags [F.], cksum 0x8b64 (correct), seq 506, ack 283, win 16354, length 0

15:05:50.085817 00:0c:29:71:d0:bc (oui Unknown) > 00:0c:29:eb:92:d0 (oui Unknown), ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 64, id 16893, offset 0, flags [DF], proto TCP (6), length 40)
192.168.11.10.http > 192.168.1.101.61378: Flags [.], cksum 0xca51 (correct), seq 283, ack 507, win 245, length 0
15:05:50.085829 00:0c:29:eb:92:bc (oui Unknown) > 00:e0:4c:92:95:82 (oui Unknown), ethertype IPv4 (0x0800), length 54: (tos 0x0, ttl 63, id 16893, offset 0, flags [DF], proto TCP (6), length 40)

IPVS配置:
[root@ipvs ~]# ip addr
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
link/ether 00:0c:29:0a:98:12 brd ff:ff:ff:ff:ff:ff
inet 192.168.11.103/24 brd 192.168.11.255 scope global eth0
inet 192.168.11.10/32 brd 192.168.11.10 scope global eth0:0
inet6 fe80::20c:29ff:fe0a:9812/64 scope link
valid_lft forever preferred_lft forever
3: eth2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
link/ether 00:0c:29:0a:98:1c brd ff:ff:ff:ff:ff:ff
inet 192.168.10.103/24 brd 192.168.10.255 scope global eth2
inet6 fe80::20c:29ff:fe0a:981c/64 scope link
valid_lft forever preferred_lft forever

[root@ipvs ~]# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.11.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
192.168.10.0 0.0.0.0 255.255.255.0 U 0 0 0 eth2
169.254.0.0 0.0.0.0 255.255.0.0 U 1002 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 U 1003 0 0 eth2
0.0.0.0 192.168.11.102 0.0.0.0 UG 0 0 0 eth0

ifconfig eth0:0 192.168.11.10 netmask 255.255.255.255
ipvsadm -A -t 192.168.11.10:80 -s rr
ipvsadm -a -t 192.168.11.10:80 -r 192.168.10.104:80 -g
ipvsadm -a -t 192.168.11.10:80 -r 192.168.10.105:80 -g
watch 'ipvsadm -Ln'

192.168.1.101.61361 > 192.168.11.10.http: Flags [.], cksum 0x086c (correct), seq 1, ack 1, win 16425, length 0

15:05:44.292746 00:0c:29:eb:92:c6 (oui Unknown) > 00:0c:29:0a:98:12 (oui Unknown), ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 127, id 25228, offset 0, flags [DF], proto TCP (6), length 40)
192.168.1.101.61361 > 192.168.11.10.http: Flags [.], cksum 0x086c (correct), seq 1, ack 1, win 16425, length 0
15:05:44.292837 00:0c:29:0a:98:1c (oui Unknown) > 00:0c:29:71:d0:bc (oui Unknown), ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 127, id 25228, offset 0, flags [DF], proto TCP (6), length 40)

web配置:
[root@web01 ~]# ip addr
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
link/ether 00:0c:29:d3:56:4f brd ff:ff:ff:ff:ff:ff
inet 192.168.10.104/24 brd 192.168.10.255 scope global eth0
inet6 fe80::20c:29ff:fed3:564f/64 scope link
valid_lft forever preferred_lft forever

[root@web01 ~]# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.11.10 0.0.0.0 255.255.255.255 UH 0 0 0 lo
192.168.10.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 1002 0 0 eth0
0.0.0.0 192.168.10.102 0.0.0.0 UG 0 0 0 eth0

echo 1 > /proc/sys/net/ipv4/conf/all/arp_ignore
echo 1 > /proc/sys/net/ipv4/conf/lo/arp_ignore
echo 2 > /proc/sys/net/ipv4/conf/lo/arp_announce
echo 2 > /proc/sys/net/ipv4/conf/all/arp_announce
ifconfig lo:0 192.168.11.10 netmask 255.255.255.255
ifconfig
route add -host 192.168.11.10 dev lo:0

192.168.1.101.61361 > 192.168.11.10.http: Flags [S], cksum 0x6a33 (correct), seq 2012475181, win 8192, options [mss 1460,nop,wscale 2,nop,nop,sackOK], length 0

15:05:44.662926 00:0c:29:71:d0:bc (oui Unknown) > 00:0c:29:eb:92:d0 (oui Unknown), ethertype IPv4 (0x0800), length 66: (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 52)
192.168.11.10.http > 192.168.1.101.61361: Flags [S.], cksum 0xcebb (correct), seq 4055011495, ack 2012475182, win 14600, options [mss 1460,nop,nop,sackOK,nop,wscale 6], length 0
15:05:44.662929 00:0c:29:eb:92:bc (oui Unknown) > 00:e0:4c:92:95:82 (oui Unknown), ethertype IPv4 (0x0800), length 66: (tos 0x0, ttl 63, id 0, offset 0, flags [DF], proto TCP (6), length 52)
192.168.11.10.http > 192.168.1.101.61361: Flags [S.], cksum 0xcebb (correct), seq 4055011495, ack 2012475182, win 14600, options [mss 1460,nop,nop,sackOK,nop,wscale 6], length 0
15:05:44.662972 00:e0:4c:92:95:82 (oui Unknown) > 00:0c:29:eb:92:c6 (oui Unknown), ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 25228, offset 0, flags [DF], proto TCP (6), length 40)
192.168.1.101.61361 > 192.168.11.10.http: Flags [.], cksum 0x086c (correct), seq 1, ack 1, win 16425, length 0
15:05:44.663432 00:0c:29:eb:92:c6 (oui Unknown) > 00:0c:29:0a:98:12 (oui Unknown), ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 127, id 25228, offset 0, flags [DF], proto TCP (6), length 40)
192.168.1.101.61361 > 192.168.11.10.http: Flags [.], cksum 0x086c (correct), seq 1, ack 1, win 16425, length 0
15:05:44.663434 00:0c:29:0a:98:1c (oui Unknown) > 00:0c:29:71:d0:bc (oui Unknown), ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 127, id 25228, offset 0, flags [DF], proto TCP (6), length 40)

另外有需要云服务器可以了解下创新互联cdcxhl.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。

网页标题:LVSDR模式启动脚本-创新互联
浏览路径:https://www.cdcxhl.com/article44/csjjee.html

成都网站建设公司_创新互联,为您提供网站建设建站公司网站导航网站改版定制网站静态网站

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

成都网站建设公司