web-dev-qa-db-ja.com

AsteriskのChanspy機能を特定のチャネルに制限するにはどうすればよいですか?

Chanspy機能コードを使用してFreePBXでAsterisk1.4の標準構成を使用しています。スパイできるチャネルを制限したいのですが、理想的には.confファイルでこれを行います。どうすればよいですか?

1
chrism2671

機能をパスワードで保護することでこれを実行できるようです。例を次に示します。

http://www.fonality.com/trixbox/forums/trixbox-forums/open-discussion/password-protecting-feature-codes

ページから:

Here's how it works - you pick up the phone and dial 555 (Channel Spy Feature Code), The system will ask for a password. If the correct password is entered spying ensues. IF the incorrect password is entered three times the call is dropped. All I did was add a couple of lines to extensions_custom.conf

;Password Protect Channel Spy
exten => 555,1,Authenticate(1234)

;Password Protect ZapBarge
exten => 888,1,Authenticate(1234)
1
polynomial