123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- #
- # control tool for maintaining Kamailio
- #
- #===================================================================
- [ "${IMPCTLBASE}" = "yes" ] && return
- export IMPCTLBASE="yes"
- ##### ----------------------------------------------- #####
- ### common variables and functions for CTL engines
- #
- # period in which stats are reprinted
- if [ -z "$WATCH_PERIOD" ] ; then
- WATCH_PERIOD=2
- fi
- #
- ##### ------------------------------------------------ #####
- ### usage functions
- #
- usage_cisco_restart() {
- echo
- mecho " -- command 'cisco_restart' - restart CISCO phone (NOTIFY)"
- echo
- cat <<EOF
- cisco_restart <uri> ................ restart phone configured for <uri>
- EOF
- }
- USAGE_FUNCTIONS="$USAGE_FUNCTIONS usage_cisco_restart"
- usage_online() {
- echo
- mecho " -- command 'online' - dump online users from memory"
- echo
- cat <<EOF
- online ............................. display online users
- EOF
- }
- USAGE_FUNCTIONS="$USAGE_FUNCTIONS usage_online"
- usage_kamailio_monitor() {
- echo
- mecho " -- command 'monitor' - show internal status"
- echo
- cat <<EOF
- monitor ............................ show server's internal status
- EOF
- }
- USAGE_FUNCTIONS="$USAGE_FUNCTIONS usage_kamailio_monitor"
- usage_ping() {
- echo
- mecho " -- command 'ping' - ping a SIP URI (OPTIONS)"
- echo
- cat <<EOF
- ping <uri> ......................... ping <uri> with SIP OPTIONS
- EOF
- }
- USAGE_FUNCTIONS="$USAGE_FUNCTIONS usage_ping"
- usage_usrloc() {
- echo
- mecho " -- command 'ul|alias' - manage user location or aliases"
- echo
- cat <<EOF
- ul show [<username>]................... show in-RAM online users
- ul show --brief........................ show in-RAM online users in short format
- ul rm <username> [<contact URI>]....... delete user's usrloc entries
- ul add <username> <uri> ............... introduce a permanent usrloc entry
- ul add <username> <uri> <expires> ..... introduce a temporary usrloc entry
- ul add <user> <uri> <expires> <path> .. introduce a temporary usrloc entry
- EOF
- }
- USAGE_FUNCTIONS="$USAGE_FUNCTIONS usage_usrloc"
- usage_ctlcommon() {
- echo
- mecho " -- command 'ps' - print details about running processes"
- echo
- cat <<EOF
- ps ................................. details about running processes
- EOF
- echo
- mecho " -- command 'uptime' - print uptime details"
- echo
- cat <<EOF
- uptime ............................. print start time end elapsed seconds
- EOF
- echo
- mecho " -- command 'stats' - print internal statistics"
- echo
- cat <<EOF
- stats [group]....................... dump all or a group of internall statistics
- EOF
- }
- USAGE_FUNCTIONS="$USAGE_FUNCTIONS usage_ctlcommon"
|