我已经从SIPr更改为SipUnit,我正在尝试拨打基本电话。服务器具有摘要式身份验证。不合时宜地,我不断得到一个" 481呼叫支路/交易不存在"而且我确定这是因为一个非常明显的原因,但我似乎无法解决它...我已经尝试了一切。这是PBX日志中的关键部分。在此先感谢,如果有人能向我解释为什么会发生这种情况!
- --> SIP/2.0 407 Proxy Authentication Required
- From: <sip:6000@auto>;tag=126319630
- To: <sip:6001@auto>;tag=2ff812a8-da5512ac-1b94-6006-5a9c94-45273d5a-5a9c94
- Call-ID: e0114805d5e2e318089ce3ef710aad63@10.200.10.59
- CSeq: 1 INVITE
- Contact: <sip:6001@172.18.85.218:1060>
- Proxy-Authenticate: Digest realm="radvision.com",nonce="c0cf196770955ca0fc6e3e65dc0cdb410000000055c1cef4",algorithm=MD5
- Via: SIP/2.0/UDP 10.200.10.59:9001;received=172.18.85.218;rport=1060;branch=z9hG4bK-373136-f42a6651eba8e1583353591126fdf561
- Content-Length: 0
- <-- ACK sip:6001@auto SIP/2.0
- Call-ID: e0114805d5e2e318089ce3ef710aad63@10.200.10.59
- Max-Forwards: 70
- From: <sip:6000@auto>;tag=126319630
- To: <sip:6001@auto>;tag=2ff812a8-da5512ac-1b94-6006-5a9c94-45273d5a-5a9c94
- Via: SIP/2.0/UDP 10.200.10.59:9001;branch=z9hG4bK-373136-f42a6651eba8e1583353591126fdf561
- CSeq: 1 ACK
- Route: <sip:172.18.85.218:1060;lr;transport=udp>
- Content-Length: 0
- <-- INVITE sip:6001@auto SIP/2.0
- Call-ID: e0114805d5e2e318089ce3ef710aad63@10.200.10.59
- CSeq: 2 INVITE
- From: <sip:6000@auto>;tag=126319630
- To: <sip:6001@auto>;tag=2ff812a8-da5512ac-1b94-6006-5a9c94-45273d5a-5a9c94
- Via: SIP/2.0/UDP 10.200.10.59:9001;branch=z9hG4bK-373136-a29ab2f2fc28a3f00e2cd290bac58473
- Max-Forwards: 70
- Contact: <sip:6000@10.200.10.59:9001;transport=udp;lr>
- Route: <sip:172.18.85.218:1060;lr;transport=udp>,<sip:172.18.85.218:1060;lr;transport=udp>
- Proxy-Authorization: Digest username="6000",realm="radvision.com",nonce="c0cf196770955ca0fc6e3e65dc0cdb410000000055c1cef4",uri="sip:6001@auto",response="79af22055592634e57d5c17e59da166e",algorithm=MD5
- Content-Length: 0
- --> SIP/2.0 481 Call Leg/Transaction Does Not Exist
- From: <sip:6000@auto>;tag=126319630
- To: <sip:6001@auto>;tag=2ff812a8-da5512ac-1b94-6006-5a9c94-45273d5a-5a9c94
- Call-ID: e0114805d5e2e318089ce3ef710aad63@10.200.10.59
- CSeq: 2 INVITE
- Via: SIP/2.0/UDP 10.200.10.59:9001;branch=z9hG4bK-373136-a29ab2f2fc28a3f00e2cd290bac58473
- Content-Length: 0
我使用类似于示例TestWithProxyAuthentication.java的代码。
答案 0 :(得分:1)
在您附上的流程中,注册未完成。 收到“407 Proxy Authentication Required”后,您应该发送带有代理授权标题的第二个REGISTER。