История изменений
Исправление megabaks, (текущая версия) :
#!/sbin/runscript
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
depend() {
need net
before ntp-client
keyword -timeout
}
start() {
ebegin "делаем хорошо"
ip route add default scope global \
nexthop via 192.168.1.1 dev eth1 weight 1 \
nexthop via 192.168.2.1 dev eth2 weight 1
eend $?
}
как-то так
потом кидаешь к остальным и запиливаешь в желаемый уровень
Исходная версия megabaks, :
#!/sbin/runscript
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
depend() {
need net
after ntp-client
keyword -timeout
}
start() {
ebegin "делаем хорошо"
ip route add default scope global \
nexthop via 192.168.1.1 dev eth1 weight 1 \
nexthop via 192.168.2.1 dev eth2 weight 1
eend $?
}
как-то так
потом кидаешь к остальным и запиливаешь в желаемый уровень