⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 routed

📁 基于routed的RIP2, 实现了multicast 和Broadcast
💻
字号:
#!/bin/sh## routed	Start the routed daemon.# chkconfig: - 50 50# description: Start the routed daemon.## processname: /usr/local/sbin/nx-routed# config: /etc/routed.conf# pidfile: /var/run/routed###   This program is free software; you can redistribute it and/or modify#   it under the terms of the GNU General Public License as published by#   the Free Software Foundation; version 2 dated June, 1991.##   This program is distributed in the hope that it will be useful,#   but WITHOUT ANY WARRANTY; without even the implied warranty of#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the#   GNU General Public License for more details.##   You should have received a copy of the GNU General Public License#   along with this program;  if not, write to the Free Software#   Foundation, Inc., 675 Mass Ave., Cambridge, MA 02139, USA.#sbindir=/usr/local/sbinrundir=/var/run/routedROUTED=$sbindir/nx-routedDESC="routed"NAME=nx-routedARGS="". /etc/rc.d/init.d/functionstest -f $ROUTED || exit 0case "$1" in  start)	echo -n "Starting $DESC:"	echo -n " radiusd"	daemon $ROUTED	echo "."	;;  stop)	[ -z "$2" ] && echo -n "Stopping $DESC: "	killproc $ROUTED	[ -z "$2" ] && echo "routed."	;;  reload|force-reload)	echo "Reloading $DESC configuration files."	killproc -1 $ROUTED	;;  restart)	sh $0 stop quiet	sleep 3	sh $0 start	;;  *)        echo "Usage: /etc/init.d/$NAME {start|stop|reload|restart}"        exit 1esacexit 0

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -