1

我安装了一个星号服务器,并且在我尝试时注册了几个 SIP 用户

*CLI> sip show peers

Name/username          Host            Dyn Nat ACL Port     Status     

2000/2000              (Unspecified)   D           5060     Unmonitored 


2005/2005              (Unspecified)   D  *N   *   0        Unmonitored 

6 sip peers [Monitored: 0 online, 0 offline Unmonitored: 5 online, 1 offline]

让我知道如何为特定 SIP 用户配置 NAT 设置,例如在这种情况下,2000 的 NAT 为空白,2005 的 NAT 为 N。

4

1 回答 1

0

您可以使用 CLI 编辑 sip*.conf(根据您的设置)。

到目前为止,Asterisk nat 支持已经发展到以下选项:

nat = no                ; Do no special NAT handling other than RFC3581
nat = force_rport       ; Pretend there was an rport parameter even if there wasn't
nat = comedia           ; Send media to the port Asterisk received it from regardless of where the SDP says to send it.
nat = auto_force_rport  ; Set the force_rport option if Asterisk detects NAT (default)
nat = auto_comedia      ; Set the comedia option if Asterisk detects NAT

不要忘记为 natted 用户设置 canreinvite=no。

我在下面为用户 681 展示了一个示例。

[681]
deny=0.0.0.0/0.0.0.0
type=friend
secret=123456
qualify=yes
port=5060
nat=yes
dtmfmode=rfc2833
dial=SIP/681
context=from-internal
canreinvite=no
callgroup=
callerid=device <681>
accountcode=
call-limit=50
于 2011-01-27T04:57:47.550 回答