[root@Real1 ~]# chmod +x /scripts/realserver.sh
[root@Real1 ~]# .realserver.sh start ##运行此脚本,传递一个参数为start,即可设置vip地址、默认路由、对与外网arp请求参数
[root@Real1 ~]# service ntpd stop && ntpdate 172.16.0.1 ##这里实现时间同步,使用的ntpdate+crontab来实现,也可以通过system-config-date来做相关设置即可。
[root@Real1 ~]# crontab -e
*/3 * * * * /sbin/ntpdate 172.16.0.1 &>/dev/null
[root@Real1 ~]# yum install httpd -y
[root@Real1 ~]# echo "Real1 Server-1" > /var/www/html/index.txt ##提供网页内容,用于测试
[root@Real1 ~]# service httpd restart