Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

incoming call from SP

Dmitriy_Nik

Systems Engineer
Aug 16, 2024
15
0
1
Hi all. I have received a SIP IP-to-IP trunk from the provider without authentication. I configured it according to the scheme AvayaCM=>AvayaSM=>AvayaSBCe=>Provider side. Outgoing calls work, but the problem is with incoming calls. When dialling a number the call gets stuck at Avaya SM with the error "SIP/2.0 407 Proxy Authentication Required". But there is no authentication on Avaya SM. Please help me understand what could be causing this.
172.25.0.7 Avaya SM
172.25.0.62 Avaya SBC
172.25.0.9 CM
tracesbc
sbc
traceSM
sm

sm
smgr
smgr
 
Just for yuks, in the far right of either the SIP entity or entity link, there's a tick box for trusted. I've never not had that box ticked...
 
Thank you all for the advice on my question. I solved the problem by removing SM from the chain, leaving only CM and SBC.
 
That's working around the problem...not solving it. That's not a supported configuration, but if you're just labbing around for fun, go nuts.
 
That's working around the problem...not solving it. That's not a supported configuration, but if you're just labbing around for fun, go nuts.
I'm trying to figure out why SM is giving an error, but I can't find out where to look. All entities are created, routes are specified....
 
Sorry, I should have been more specific about my suggestion for fixing Topology Hiding. First, put back the line that Overwrites the domain in the Request-Line.

You should have two Topology Hiding (TH) statements. The first one, "Default" contains no changes. In other words, the Action for all Headers is "Auto". The second TH is the one you are showing above (with the change suggested in my first paragraph). Let's call it "ASM Topo Hiding."

You should have two Server Flows. One that has the Service Provider's proxy server as the target. In that one the TH should be the default. The second Server Flow has Aura Session Manager as the target. That one should use the ASM Topo Hiding. (And I think that is the original mistake that needs to be fixed.)

Good luck!
 
Did you check for that trusted tick box on the entity or entity link? First thing in your call processing trace is that the remote host is not trusted. Could be that.
 
Did you check for that trusted tick box on the entity or entity link? First thing in your call processing trace is that the remote host is not trusted. Could be that.
Yes , I did. All entries are trusted in asm sip and sbc sip.That's why I can't understand why it lets outgoing calls through, but not incoming calls.
 
Sorry, I should have been more specific about my suggestion for fixing Topology Hiding. First, put back the line that Overwrites the domain in the Request-Line.

You should have two Topology Hiding (TH) statements. The first one, "Default" contains no changes. In other words, the Action for all Headers is "Auto". The second TH is the one you are showing above (with the change suggested in my first paragraph). Let's call it "ASM Topo Hiding."

You should have two Server Flows. One that has the Service Provider's proxy server as the target. In that one the TH should be the default. The second Server Flow has Aura Session Manager as the target. That one should use the ASM Topo Hiding. (And I think that is the original mistake that needs to be fixed.)

Good luck!
Tried it, but nothing changed.
sbc
sbc

sm1
sm2
sm3
trace
 
It appears you did the opposite of what I was suggesting.

In the Server Flow going to KCELL, the Topology Hiding should be: Default

In the Server Flow going to ASM, the Topology Hiding should be: ASM
 
It appears you did the opposite of what I was suggesting.

In the Server Flow going to KCELL, the Topology Hiding should be: Default

In the Server Flow going to ASM, the Topology Hiding should be: ASM
😓, it was the middle of the night, I got confused. I corrected it, but the situation hasn't changed.
 
I understand how easily that sort of mistake can happen--I've made my fair share of 2:00 AM oops.

I believe the fundamental problem is that your SBCE is still not applying Topology Hiding to the traffic going to ASM. I'm looking at the Server Flow for KCELL you presented above. It looks misconfigured and therefore what needs to be changed to fix the problem.

When I teach SBCEs, I recommend that students put the source and destination in the flow name because it makes clearer what the settings should be. That is because all the settings are about the destination, with the exception of the Routing Policy which is about the source.

Here's what I think it the settings should be:

Name= From KCELL to ASM *** So this flow is focused on sending traffic to Aura Session Manager***
Server Config= ASM *** The destination for this Flow's traffic is ASM. ***
Received Interface= B1 *** The SBCE will receive the SIP Signaling from KCELL on this interface ***
Signaling Interface= A1 *** The SBCE will send the SIP to ASM from this Interface ***
Media Interface = A1 *** The SBCE will send the RTP to CM's G450 or AAMS from this Interface ***
Policy= ASM Policy *** The best design is to create a uniquely named Policy Group for each flow. It's a long explanation why. ***
Routing Policy= KCELL_RP *** This entry always points back to the source of the traffic. It "anchors the opposite side of the flow. Isn't that mindboggling? ***
Topology Hiding = ASM_TH *** This entry is what changes the Domain in the addresses to something like "training.com", which is what ASM really likes ***

The other flow should look like this:

Name= From ASM to KCELL *** So this flow is focused on sending traffic to KCELL ***
Server Config= KCELL *** The destination for this Flow's traffic is KCELL. ***
Received Interface= A1 *** The SBCE will receive the SIP Signaling from ASM on this interface ***
Signaling Interface= B1 *** The SBCE will send the SIP to KCELL from this Interface ***
Media Interface = B1 *** The SBCE will send the RTP to KCELL from this Interface ***
Policy= KCELL Policy *** The best design is to create a uniquely named Policy Group for each flow. ***
Routing Policy= ASM_RP *** This entry always points back to the source of the traffic. Trust me on this***
Topology Hiding = KCELL_TH *** This entry is what changes the Domain in the addresses to an IP, which is what everyone needs, except for Avaya ***

I'm optimistic that this will fix the problem.
 
I understand how easily that sort of mistake can happen--I've made my fair share of 2:00 AM oops.

I believe the fundamental problem is that your SBCE is still not applying Topology Hiding to the traffic going to ASM. I'm looking at the Server Flow for KCELL you presented above. It looks misconfigured and therefore what needs to be changed to fix the problem.

When I teach SBCEs, I recommend that students put the source and destination in the flow name because it makes clearer what the settings should be. That is because all the settings are about the destination, with the exception of the Routing Policy which is about the source.

Here's what I think it the settings should be:

Name= From KCELL to ASM *** So this flow is focused on sending traffic to Aura Session Manager***
Server Config= ASM *** The destination for this Flow's traffic is ASM. ***
Received Interface= B1 *** The SBCE will receive the SIP Signaling from KCELL on this interface ***
Signaling Interface= A1 *** The SBCE will send the SIP to ASM from this Interface ***
Media Interface = A1 *** The SBCE will send the RTP to CM's G450 or AAMS from this Interface ***
Policy= ASM Policy *** The best design is to create a uniquely named Policy Group for each flow. It's a long explanation why. ***
Routing Policy= KCELL_RP *** This entry always points back to the source of the traffic. It "anchors the opposite side of the flow. Isn't that mindboggling? ***
Topology Hiding = ASM_TH *** This entry is what changes the Domain in the addresses to something like "training.com", which is what ASM really likes ***

The other flow should look like this:

Name= From ASM to KCELL *** So this flow is focused on sending traffic to KCELL ***
Server Config= KCELL *** The destination for this Flow's traffic is KCELL. ***
Received Interface= A1 *** The SBCE will receive the SIP Signaling from ASM on this interface ***
Signaling Interface= B1 *** The SBCE will send the SIP to KCELL from this Interface ***
Media Interface = B1 *** The SBCE will send the RTP to KCELL from this Interface ***
Policy= KCELL Policy *** The best design is to create a uniquely named Policy Group for each flow. ***
Routing Policy= ASM_RP *** This entry always points back to the source of the traffic. Trust me on this***
Topology Hiding = KCELL_TH *** This entry is what changes the Domain in the addresses to an IP, which is what everyone needs, except for Avaya ***

I'm optimistic that this will fix the problem.
II decided to try to build this circuit via tls, but when I got to the finish line I found out that there is no encryption license. I'll try to find one tomorrow.
Found an interesting article, maybe this is my situation
 

Part and Inventory Search

Sponsor

Back
Top