Questions tagged [diameter-protocol]

Diameter is an authentication, authorization and accounting protocol for computer networks, and an alternative to RADIUS

Diameter is an authentication, authorization and accounting protocol for computer networks, and an alternative to RADIUS

102 questions
1
vote
2 answers

How can a client and a server in seagull diameter work synchronized?

I am working in seagull diameter, This is my scenarios for seagull server and seagull client Client Server ---- CER ----> <--- CEA ---- ---- AAR ----> <--- AAA ---- ---- STR ---> <--- STA ---- But the Result:…
Kevin
  • 37
  • 1
  • 6
1
vote
0 answers

How to send a Diameter Request message from Server to Client using RestComm JDiameter

I am implementing an Diameter application where the Server sends the Request message to Client after the Client connects to the Server followed by a successful CER/CEA exchange. I build the message and send it to the client to the same host but i…
nithin
  • 105
  • 1
  • 12
1
vote
1 answer

Restcomm GLMC diameter setup

I'm new to diameter protocol. All I want to do is provide a method to our developers to get mobile location using diameter protocol. We are still using map ati over sigtran to request location info, but it's no longer valid since LTE. I have…
ivcode
  • 235
  • 2
  • 14
1
vote
2 answers

in LTE Gx (Diameter) Interface how would transactions like Re-Auth Req/Ans mapped to IMSI?

in LTE Gx (Diameter) Interface how would transactions like Re-Auth Req/Ans mapped to IMSI? these transactions don't have Subscription ID and User-Name APN and same thing for other Diameter Interfaces transactions that are missing Subscription ID…
Lava
  • 11
  • 1
1
vote
1 answer

Scala run fails after adding dependency to build.sbt

I have a scala project that compiles and can be executed without errors. I added diameter dependency in my module's build.sbt file: libraryDependencies ++= Seq( // some other dependencies here // then diameter dependencies …
marie
  • 457
  • 8
  • 27
1
vote
1 answer

Difference btn Restcomm CCA and GX resource adapters

I want to use a service to receive GX interface messages (Credit Control Request) but I found that CCA and GX RAs both are serving CCR with code 272 in restcomm (Mobicents) implementation. I have below questions: What is the difference between CCA…
Nebras
  • 636
  • 1
  • 7
  • 16
1
vote
1 answer

When are these diameter errors are triggered?

Can you give examples of when these diameter errors are triggered by the diameter server? Error_User_Unknown(5001) and Unknown_Session_ID (5002) in the LTE world
Lava
  • 11
  • 2
1
vote
1 answer

Restcomm jDiameter: Error creating SCTP socket

I am trying to create a standalone SCTP diameter client using Jdiameter. The jar libraries I am using are jdiameter-api-1.5.9.0-build538-SNAPSHOT and jdiameter-impl-1.5.9.0-build538-SNAPSHOT But I get this error Unable to create server socket for…
tej
  • 73
  • 12
1
vote
2 answers

How do I send a Diameter message to an IP other than Destination-Host's value in mobicents

In all Diameter implementations I saw, the messages originating from the server is always sent towards the DNS resolved IP address of whats in the Destination-Host AVP. But, in commercial servers, we see an option to configure a DRA or a DEA which…
Tharaka Devinda
  • 1,952
  • 21
  • 23
1
vote
1 answer

Basic Charging with Java Diameter client

I am newbie to diameter protocol and its implementation in Java. I have done some basic R&D on Diameter protocol,its interface AAA etc and stuff. My Objective is to create a simple application for a client , which can charge to customer at some…
1
vote
3 answers

Seagull Error Unexpected (no scenario found) call with session-id

I am using seagull as a diameter server. I am trying to simulate an IMS 3GPP Cx traffic scenario like this: >MAR, SAR, Note-1: ">" indicates receive, "<" indicates send. Note-2: MAR and SAR have different Session-Ids. For this, I have the scenario…
bilalmetla
  • 155
  • 12
1
vote
1 answer

Simulated PCRF Seagull script to send AAA only for final AAR

I am modifying basic diameter scenario server script(PCRF) in such way that If I receive first AAR should not send AAA, I need to send AAA only if I receive Final AAR. please any one give me a hint or a script which will be great useful to me to…
Lohithraj
  • 11
  • 2
1
vote
3 answers

Data roaming indicator AVP in the diameter request

Please any one tell me how we will identify the roaming/non-roaming subscribers from the diameter CCR initial request.
Midhunlal
  • 333
  • 2
  • 11
1
vote
1 answer

Why java.nio.SocketChannel not send data (Jdiameter)?

I create simple diameter client and server (Link to sources). Client must send 10000 ccr messages, but in wireshark i see only ~300 ccr messages will be sended. Other messages raised timeouts on client. I run server and client on different computers…
MadCrank
  • 11
  • 4
1
vote
3 answers

Diameter protocol CCR request not routable

I am using the jdiameter stack from http://i1.dk/JavaDiameter/ for my diameter implementation. The initial CER request goes through fine but on sending a CCR request i get a error as "not routable". Can anyone help me out with this?. Also I am…