Search found 501 matches

by james
Tue Jul 23, 2024 10:46 am
Forum: Brekeke SIP Server Forum
Topic: Routing a call to an ivr extension (Dial Plan)
Replies: 8
Views: 9181

by james
Mon Jul 22, 2024 8:29 am
Forum: Brekeke SIP Server Forum
Topic: Routing a call to an ivr extension (Dial Plan)
Replies: 8
Views: 9181

If it is the bundled SIP Server in Brekeke PBX, you don't have to add or modify any DialPlan rules. The default DialPlan rules make all calls go to the PBX.
Instead of tuning DialPlan, let you use IVR in Brekeke PBX to meet the requirement.

FYI:
https://docs.brekeke.com/pbx/auto-attendant
by james
Fri Jul 19, 2024 4:17 pm
Forum: Brekeke SIP Server Forum
Topic: Routing a call to an ivr extension (Dial Plan)
Replies: 8
Views: 9181

Are you using Brekeke SIP Server aside from Brekeke PBX?
Or is it a SIP Server bundled in Brekeke PBX?
by james
Thu Jun 27, 2024 5:40 pm
Forum: Brekeke SIP Server Forum
Topic: RTP Packets Not Relayed Over 2nd NIC on BSS to UA
Replies: 2
Views: 5204

Do you open the RTP port range at Windows firewall?
In the default, the RTP port range is UDP 10000-10099.
by james
Wed Jun 05, 2024 4:18 pm
Forum: Brekeke SIP Server Forum
Topic: Deploy Pattern matching when using % > 9
Replies: 2
Views: 5449

The syntax is %{num}.
so %12 should be written as %{12}.
by james
Tue May 28, 2024 2:36 pm
Forum: Brekeke SIP Server Forum
Topic: Brekeke Establishing Interface to AWS
Replies: 3
Views: 9358

> - G:52.223.6.9 : domain: [<customer domain>.com] It means you have a setting for this domain under the [Domains] page. Because this domain's IP address is 52.223.6.9 and it is a public IP address, the SIP server puts it in Contact URI if 200 OK is sent to another public IP address. Do you have any ...
by james
Fri May 17, 2024 9:40 pm
Forum: Brekeke SIP Server Forum
Topic: Brekeke Establishing Interface to AWS
Replies: 3
Views: 9358

Are you sure no "52.223.6.9" at [Interface address 1] in [Configuration]->[System] page?

If you execute, "iflist" command at [Tools]->[Command] page, how is this IP address shown?

Does this IP address physically face to CUCM? or Load Balancer?
by james
Wed Jul 13, 2022 10:19 am
Forum: Brekeke SIP Server Forum
Topic: session plugin outbound not working
Replies: 3
Views: 7329

Do you have any other DialPlan rules which match an outbound call prior to the rule which executes the session plugin?

During a call, let you check the [DialPlan-Rules] filed in [Session Details] page from [Active Sessions].
If the field indicates another rule name, the plugin was not called.
by james
Thu Jun 17, 2021 9:14 am
Forum: Brekeke SIP Server Forum
Topic: See or download registered client list
Replies: 3
Views: 13065

Generally such information is available to partner companies and distributors.
But contact support@brekeke.com if you are interested in.
by james
Fri Nov 20, 2020 6:23 pm
Forum: Brekeke SIP Server Forum
Topic: Blocking duplicate calls from the same source.
Replies: 30
Views: 31780

If your company has a support contract with Brekeke, contact support@brekeke.com to open a support ticket. We will look at Wireshark capture and Brekeke's log files to analyze the issue further.
by james
Wed Nov 18, 2020 2:59 pm
Forum: Brekeke SIP Server Forum
Topic: Blocking duplicate calls from the same source.
Replies: 30
Views: 31780

> I didn't realize I had to put &net.sip.timeout.bye=1 in the PBX rules as well. It closes the canceled session immediately. so next call will not be blocked if the previous call was canceled. > So for example if the nurse call is ringing a "normal" call it will be To=sip6001@IPADDRESS > If an ...
by james
Thu Nov 12, 2020 5:18 pm
Forum: Brekeke SIP Server Forum
Topic: Blocking duplicate calls from the same source.
Replies: 30
Views: 31780

Have you put "&net.sip.timeout.bye = 1" in the rule which forwards a call o the PBX? Also the blocking rule must be listed above the forwarding rule. Rule: Block the second INVITE [Matching Patterns] $request = ^INVITE To = sip:(6.+)@ $isTalking(From) = ^true [Deploy Patterns] $response = 486 &net ...
by james
Thu Nov 12, 2020 3:06 pm
Forum: Brekeke SIP Server Forum
Topic: Blocking duplicate calls from the same source.
Replies: 30
Views: 31780

> So it changes the priority and sends to a different group of phones. That's why $isTalking(To) doesn't work because To-URI will be differ. > What is the sip timeout supposed to accomplish? If you add "&net.sip.timeout.bye = 1" in the Deploy Patterns, the SIP Server closes the Ringing session ...
by james
Thu Nov 12, 2020 12:38 pm
Forum: Brekeke SIP Server Forum
Topic: Blocking duplicate calls from the same source.
Replies: 30
Views: 31780

Try this..

[Matching Patterns]
$request = ^INVITE
To = sip:(6.+)@
$isTalking( From ) = ^true

[Deploy Patterns]
$response = 486
&net.sip.timeout.bye = 1
by james
Thu Nov 12, 2020 12:35 pm
Forum: Brekeke SIP Server Forum
Topic: Blocking duplicate calls from the same source.
Replies: 30
Views: 31780

It seems the original blocking rule like the following is better so far because the second INVITE has the same From-URI. [Matching Patterns] $request = ^INVITE To = sip:(6.+)@ $isTalking( From ) = ^true [Deploy Patterns] $response = 486 But it also blocks the next valid call too because the SIP ...
by james
Tue Nov 10, 2020 9:37 pm
Forum: Brekeke SIP Server Forum
Topic: Blocking duplicate calls from the same source.
Replies: 30
Views: 31780

I see.If you have " $isTalking(From) " in that rule, any SIP INVITE which have same caller-ID (as From-URI) will be blocked. If you have " $isTalking(To) " in that rule, any SIP INVITE which have same callee-ID (as To-URI) will be blocked. I thought re-send INVITE has same From-URI and To-URI as the ...
by james
Mon Nov 09, 2020 3:18 pm
Forum: Brekeke SIP Server Forum
Topic: Blocking duplicate calls from the same source.
Replies: 30
Views: 31780

Does the nurse call change the Caller-ID in From: header? I thought it changed Callee-ID in To: header. Can you try the DialPlan rule below. I added "$isTalking(To)". Matching Patterns $request = ^INVITE To = sip:(6.+)@ $isTalking(From) = ^true $isTalking(To) = ^true Deploy Patterns $response = 486
by james
Wed Oct 21, 2020 6:48 pm
Forum: Brekeke SIP Server Forum
Topic: Blocking duplicate calls from the same source.
Replies: 30
Views: 31780

Such rejected calls are listed under [Logs]->[Error Logs] page.
by james
Tue Oct 20, 2020 8:33 am
Forum: Brekeke SIP Server Forum
Topic: Blocking duplicate calls from the same source.
Replies: 30
Views: 31780

> The only thing that changes is the first number in our "From sip: (#.+)

Does From-URI have the '#' character?
Do you need to catch an INVITE which has such a From-URI?
by james
Sun Oct 18, 2020 8:13 pm
Forum: Brekeke SIP Server Forum
Topic: Blocking duplicate calls from the same source.
Replies: 30
Views: 31780

> Will this rule apply to any dial plans with a lower priority after it? Yes. but it only matches if "To = sip:(6.+)@" is fulfilled. > Also let's say the first number is 103, this rule will only block from 103 I assume? Yes. > Let's say a call from 105 is made, this one should still come through ...
by james
Sat Oct 17, 2020 7:52 pm
Forum: Brekeke SIP Server Forum
Topic: Blocking duplicate calls from the same source.
Replies: 30
Views: 31780

Is the duplicated second call made while the first call is still ringing? If so, add the DialPlan rule below above the current rule. This rule returns "486 Busy Here" if the caller is on another SIP Session. Matching Patterns $request = ^INVITE To = sip:(6.+)@ $isTalking( From ) = ^true Deploy ...
by james
Tue Oct 06, 2020 9:11 am
Forum: Brekeke SIP Server Forum
Topic: Blocking duplicate calls from the same source.
Replies: 30
Views: 31780

First, there are several syntax errors in your DialPlan rule so it seems the DialPlan rule is never executed. Here is the modified DialPlan rule. Matching Patterns: $request = ^INVITE $registered = ^false To = sip:(6.+)@ From = sip:(1.+)\*(.+)\*(.+)@ Deploy patterns: To = sip:%1@IP ADDRESS From ...
by james
Fri May 22, 2020 10:17 am
Forum: Brekeke SIP Server Forum
Topic: Query Total Active Session on BSS
Replies: 9
Views: 12835

As you might recognize, you can kick the command directly from Linux console.

/usr/lib/jvm/java-openjdk/bin/java -cp /usr/local/apache-tomcat-8.5.34/webapps/sip/WEB-INF/lib/ondosip.jar svctl localhost info 5
by james
Thu May 21, 2020 12:53 pm
Forum: Brekeke SIP Server Forum
Topic: Query Total Active Session on BSS
Replies: 9
Views: 12835

The path of ondosip.jar is wrong.

/usr/local/apache-tomcat-8.5.34/webapps/sip/WEB-INF/lib/ondosip.jar
by james
Mon May 18, 2020 11:08 am
Forum: Brekeke SIP Server Forum
Topic: Query Total Active Session on BSS
Replies: 9
Views: 12835

Please refer to the wiki topic below. There is a sample of "svctl" command and SNMP configuration to get the result of "info" command remotely.

https://docs.brekeke.com/sip/monitoring ... h-net-snmp

It might meet your requirement but requires a SNMP middleware.