Skip to content

Opensips blog

Заметки voip инженера

  • Talant Blogs about VOIP
  • Готовые сервисы
    • PUSH NOTIFICATIONS API
  • Kamailio
  • Opensips
  • О себе и реквизиты

TIPS for rpm, rpmbuild, yum

2022-10-11 yooxyman

The main reason for me to use rpmbuild when i compile and install any software is that you can easily install and remove all files. In “make” case some time you can not do that by command “make remove”. Also when you are using “yum install” than installed libraries can be used by other software […]

Continue Reading"TIPS for rpm, rpmbuild, yum"
Posted in Unix вопросы, Без рубрикиTagged rpm, rpmbuild comment on TIPS for rpm, rpmbuild, yum

Rtpengine. Opus. Ilbc.

2022-10-072022-10-11 yooxyman

I am using ilbc to make calls with mobile applications. As we know ilbc is old codec, all tests,table and pictures all over the net make us feel as ilbc most worse then opus. because opus is faster, more quality e.t.c. Seems… my opinion is different, if you want good quality and minimum bandwidth out […]

Continue Reading"Rtpengine. Opus. Ilbc."
Posted in opensips, rtpengineTagged bandwidth, ilbc, opus, packet_loss, rtpengine comment on Rtpengine. Opus. Ilbc.

Oracle Centos 8. Rtpengine with all codecs supported.

2022-08-162022-08-16 yooxyman

As result of this instruction you will have all this codecs supported in your centos 8 installations. Synopsis: RPMS, build and install scripts: git clone https://bitbucket.org/yooxy/centos8-rtpengine10-all-codecs.git This instruction will give you RTPENGINE for Centos 7 and Centos 8 withh all codecs. RPM packages in RPMS dir are ready for install. But also you have rpmbuild-rtpengine.el7 […]

Continue Reading"Oracle Centos 8. Rtpengine with all codecs supported."
Posted in Без рубрики, Готовые решенияTagged build, centos, centos 8, g729, ilbc, opus, rtpengine comment on Oracle Centos 8. Rtpengine with all codecs supported.

Auth SIP manual

2022-06-182022-06-21 yooxyman

How to md5 auth SIP client manually if you have access to DB with passwords:in short words: # How to calculate manual response to send into Authorization header # HA1=MD5(username:realm:password) # HA2=MD5(method:digestURI) # response=MD5(HA1:nonce:HA2) route[auth] { if (!is_present_hf(“Authorization”)) return; # < converts string with ‘,’ to string with ‘;’ $var(raw_auth) = $hdr(Authorization); $var(reg_input)=$var(raw_auth); xlog(“$var(reg_input) [$ci]”); […]

Continue Reading"Auth SIP manual"
Posted in opensipsTagged auth, manual, md5, opensips, sip client comment on Auth SIP manual

Update opensips 3.2.2 -> 3.2.6 centos 7

2022-05-24 yooxyman

процедура такая получилась:1. удаляем новую Libmicrohttpd2. обновляем Opensips и ставим http и prometheus модули со старой либой2.1 копируем модули от нового в tmp3. Удаляем старую либу(она удаляется с модулями http и prometheus)4. ставим новую либу Libmicrohttpd5. копируем модули httpd и prometheus из tmp в папку с Opensips lib6. делаем копию файла libmicrohttpd.12 -> libmicrohttpd.107. после […]

Continue Reading"Update opensips 3.2.2 -> 3.2.6 centos 7"
Posted in opensipsTagged 3.2.6, centos, centos 7, libmicrohttpd, opensips, update comment on Update opensips 3.2.2 -> 3.2.6 centos 7

TLS

2022-01-30 yooxyman

Немного о том, как настраивать tls_mgm. TLS domain это обозначение настроек, которое никак не связано с доменами в SIP заголовках. Оно используется для того, что дать opensips возможность определить какие сертификаты использовать для входящих\исходящих соединений. Какие сертификаты (читай: какой TLSdomain) использовать при входящем звонке, Opensips определяет по SIP domain в (SNI) записи в сертификате присылаемом […]

Continue Reading"TLS"
Posted in opensipsTagged doc, how to, tls, tls_mgm, инструкция, как использовать comment on TLS

Opensips. MI. Json. Zabbix.

2022-01-282022-01-28 yooxyman

Opensips 3.2 have beautiful statistics module. For example you may get Data about average count of incoming sip messages directly from MI interface. Also you can output it on Zabbix graph. Enable mi_http module, add into opensips.conf:loadmodule “httpd.so”loadmodule “mi_http.so”modparam(“mi_http”, “root”, “mi”) Load statistics module and define statistics profiles and add update_stat_series() functions to script, check […]

Continue Reading"Opensips. MI. Json. Zabbix."
Posted in opensips, Без рубрикиTagged json, opensips, statistics, zabbix comment on Opensips. MI. Json. Zabbix.

Opensips-cli. Json. jq.

2022-01-262022-04-04 yooxyman

You know that opensips -x mi dlg_list will produce a lot of JSON output, what if i want to get only dialogs with state = 4 ? There are beautiful tool like “jq” present in unix. (documentation) For example output from command “opensips-cli -x mi profile_get_size profile=calls”: { “Profile”: { “name”: “calls”, “value”: null, “count”: […]

Continue Reading"Opensips-cli. Json. jq."
Posted in opensipsTagged dialogs, filter, jq, json, opensips-cli comment on Opensips-cli. Json. jq.

Register here to leave comments or asks something

2022-01-25 yooxyman

Hey, colleagues, glad to say i am open registration here so you can leave comments. Всем, привет, на открыл регистрацию здесь – можете оставлять комменты к постам.

Continue Reading"Register here to leave comments or asks something"
Posted in Без рубрики comment on Register here to leave comments or asks something

Opensips 3.2, Homer 7

2022-01-17 yooxyman

Advantages of using Opensips + Homer is possibility to see webrtc\tls traffic There is how to set simplest configuration on opensips side and Homer side. Homer 7 instruction for Debian 10. OPENSIPS: socket=hep_udp:ens5:9000 socket=hep_tcp:ens5:9000 … loadmodule “proto_hep.so” loadmodule “tracer.so” modparam(“proto_hep”, “hep_capture_id”, 5002) modparam(“proto_hep”, “hep_id”, “[hid]homer_ip:9060; transport=tcp; version=3”) modparam(“tracer”, “trace_id”, “[tid]uri=hep:hid”) ####### Routing Logic ######## # […]

Continue Reading"Opensips 3.2, Homer 7"
Posted in opensipsTagged homer, homer7, install, opensips comment on Opensips 3.2, Homer 7

Posts navigation

Older posts

My Profile

Eremin Pavel

Voip developer

P: 79227502213

E: eremina.net@gmail.com

Hire me on Freelancer.com

Управление

  • Register
  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

Облако

AMI (4) asterisk (19) centos (7) centos 7 (5) certbot (2) certificate (2) debian (3) dispatcher (2) duplicate (2) elastix (3) error (4) events (2) fail (3) freepbx (8) g729 (3) google (2) how to (2) ilbc (2) install (2) ios (2) issabel (4) issue (2) json (2) Kamailio (12) libmicrohttpd (2) limit (2) Load (3) local (2) manual (2) Mysql (8) nat (2) opensips (18) opensips-cli (3) opus (2) PAMI (2) rtpengine (7) rtpproxy (2) SBC (3) ssh (3) timeout (3) tls (5) transcoding (2) voip (4) webrtc2sip (3) windows (3)

Recent Posts

  • TIPS for rpm, rpmbuild, yum
  • Rtpengine. Opus. Ilbc.
  • Oracle Centos 8. Rtpengine with all codecs supported.
  • Auth SIP manual
  • Update opensips 3.2.2 -> 3.2.6 centos 7

Archives

  • October 2022
  • August 2022
  • June 2022
  • May 2022
  • January 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • May 2021
  • April 2021
  • March 2021
  • December 2020
  • November 2020
  • October 2020
  • September 2020
  • February 2020
  • January 2020
  • December 2019
  • November 2019
  • October 2019
  • September 2019
  • August 2019
  • July 2019
  • June 2019
  • May 2019
  • April 2019
  • March 2019
  • February 2019
  • January 2019
  • December 2018
  • November 2018
  • September 2018
  • July 2018
  • June 2018
  • May 2018
  • April 2018
  • March 2018
  • January 2018
  • December 2017
  • November 2017
  • July 2017
  • June 2017
  • May 2017
  • February 2016
  • December 2015
  • August 2015
  • June 2015
  • April 2015
  • February 2015
  • November 2014
  • September 2014
  • July 2014
  • June 2014
  • May 2014
  • August 2013
  • July 2013
  • April 2013
  • September 2012

Categories

  • ansible
  • Asterisk
  • ChannelRedirect
  • freepbx_tips
  • freeswitch
  • kamailio
  • opensips
  • rtpengine
  • SQL запросы
  • ssl\tls
  • Unix вопросы
  • vmware
  • Без рубрики
  • Безопасность
  • Городские номера
  • Готовые решения
  • Общее
  • переадресация
  • Проблемы в коде
  • Проблемы при настройке
  • Эксперт

Meta

  • Register
  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

© 2023 Opensips blog

Proudly powered by WordPress | Theme: x-blog by wpthemespace.com