📄 ripngd.init
字号:
#!/bin/bash## chkconfig: - 16 84# description: A RIP routing engine for use with Zebra and IPv6## processname: ripngd# config: /etc/ripngd.conf# source function library. /etc/rc.d/init.d/functionsRETVAL=0[ -f /etc/ripngd.conf ] || exit 0case "$1" in start) echo -n "Starting ripngd: " daemon /usr/sbin/ripngd -d RETVAL=$? [ $RETVAL -eq 0 ] && touch /var/lock/subsys/ripngd echo ;; stop) echo -n "Shutting down ripngd: " killproc ripngd RETVAL=$? [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/ripngd echo ;; restart) $0 stop $0 start RETVAL=$? ;; status) status ripngd RETVAL=$? ;; *) echo "Usage: ripngd {start|stop|restart|status}" exit 1esacexit $RETVAL
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -