blob: 75d642bf6cdd5a81593673eb3f96258490ec7c6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
title: "List active calls on asterisk"
date: 2018-09-25
description: How to show active calls on an asterisk system
tags:
- asterisk
---
## Using the cli
{{< highlight yaml >}}
watch -d -n1 'asterisk -rx “core show channels”'
{{< /highlight >}}
|