日期:2014-05-16  浏览次数:20553 次

Linux 添加 广播地址

Linux 配置 Weblogic 集群,需要手工增加广播地址

?

1、vi /etc/rc.local

2、

?

#!/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

route add -net 239.192.0.0 netmask 255.255.0.0 dev eth0

route add -net 239.193.0.0 netmask 255.255.0.0 dev eth0


?