Archive for the ‘asterisk’ Category
how to check sip channels connected for a long period
If you want to verify if there are sip channels that are connected for a long period, use this script #!/bin/bash ########################################################### # this script chech if channel has reached limit duration ########################################################### COUNT=`asterisk -rx “show channels verbose” |grep -v “hannel|active” |grep ^SIP |awk ‘{print $1″ “$9}’ |wc -l` `asterisk -rx “show channels verbose” |grep [...]
Read the rest of this entry »