Asterisk 如何消除星号PBX中的噪音?

Asterisk 如何消除星号PBX中的噪音?,asterisk,Asterisk,如何消除星号PBX中的噪音?现在我使用的是Digium pri卡,它在通话时会产生噪音 有人能帮我解决这个问题吗?PRI卡是数字卡,它不能产生噪音,也不能进行任何模拟操作 所以,噪音在PSTN/PRI端的某个地方,而不是在您的pbx上 您可以使用函数去噪,但它可以降低声级 pro-sip*CLI> core show function DENOISE -= Info about function 'DENOISE' =- [Synopsis] Apply noise reduc

如何消除星号PBX中的噪音?现在我使用的是Digium pri卡,它在通话时会产生噪音


有人能帮我解决这个问题吗?

PRI卡是数字卡,它不能产生噪音,也不能进行任何模拟操作

所以,噪音在PSTN/PRI端的某个地方,而不是在您的pbx上

您可以使用函数去噪,但它可以降低声级

pro-sip*CLI> core show function DENOISE 

  -= Info about function 'DENOISE' =- 

[Synopsis]
Apply noise reduction to audio on a channel. 

[Description]
The DENOISE function will apply noise reduction to audio on the channel that
it is executed on. It is very useful for noisy analog lines, especially when
adjusting gains or using AGC. Use 'rx' for audio received from the channel
and 'tx' to apply the filter to the audio being sent to the channel.
Examples:
exten => 1,1,Set(DENOISE(rx)=on)
exten => 1,2,Set(DENOISE(tx)=off)

[Syntax]
DENOISE(channeldirection)

[Arguments]
channeldirection
    This can be either 'rx' or 'tx'  the values that can be set to this
    are either 'on' and 'off'

[See Also]
Not available
您可以使用
去噪()

接分机3000

在此处播放IVR(可选)

接收时的降噪

发射信号的降噪

向其他PBX extn发送呼叫


拨号中心代码在此处结束

PRI发出噪音是不正常的。您需要执行以下操作


在两部外部电话之间从PRI发起呼叫,以确保PRI没有噪音。如果您观察到的噪音一定是PRI故障或卡故障。

哪种“噪音”?你有时钟/同步源设置吗?这取决于噪音的种类-我以前在PRI卡上有同步问题,时钟是一个问题,它会在所有通道上产生噪音。最后,这是由于电信公司提供了一条不可靠的线路。一旦我们改变了时钟源的设置位置,问题就消失了
[from-trunk]
exten => 3000,1,Answer()                      
exten => 3000,2,Playback(welcome)             
exten => 3000,3,Set(DENOISE(rx)=on)           
exten => 3000,4,Set(DENOISE(tx)=on)           
exten => 3000,5,Dial(SIP/300@10.9.24.50:5060) 
exten = _X.,n,Hangup()