?? command_mld6igmp
字號:
#!/bin/sh## $XORP: xorp/contrib/mld6igmp_lite/command_mld6igmp,v 1.1 2008/07/10 11:06:34 pavlin Exp $### Send commands to a running PIM process.#MODULE_NAME="IGMP"HOSTNAME=`hostname`echo "Sending command to $MODULE_NAME on $HOSTNAME..."# Conditionally set ${srcdir} if it wasn't assigned (e.g., by `gmake check`)if [ "X${srcdir}" = "X" ] ; then srcdir=`dirname $0` ; fi## The optional first argument should be either -4 or -6 to specify# IPv4 or IPv6 command# # The next argument should be the command to call.# The rest of the arguments should be the arguments to the command to call.#usage(){ echo "Usage: $0 [-4 | -6 ] <xrl_command> [xrl_command_arguments ... ]"}if [ $# -lt 1 ] ; then usage; exit 1ficase "${1}" in -4) if [ $# -lt 2 ] ; then usage; exit 1 fi IP_VERSION=IPV4 shift ;; -6) if [ $# -lt 2 ] ; then usage; exit 1 fi IP_VERSION=IPV6 shift ;; *) # XXX: IP version defaults to IPv4 IP_VERSION=IPV4 ;;esac. ${srcdir}/../cli/xrl_cli_shell_funcs.sh. ${srcdir}/../fea/xrl_mfea_shell_funcs.sh. ${srcdir}/../mld6igmp/xrl_mld6igmp_shell_funcs.sh$*exit $?
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -