随笔分类 - FreeSWITCH
摘要:Kubernetes集群 一、环境 IP 操作系统 主机名称 配置 网络 192.168.1.100 CentOS7.9 k8s-master 4vCPU/2G内存/20G硬盘 桥接模式 192.168.1.101 CentOS7.9 k8s-node01 4vCPU/2G内存/20G硬盘 桥接模式
阅读全文
摘要:docker swarm 集群 一、环境 docker安装: sudo apt install docker.io 主机分配: 操作系统 主机名 主机IP docker版本 debian 12 (bookworm) fs3(管理节点) 192.168.1.95 v20.10.24 debian 12
阅读全文
摘要:FreeSWITCH内核开发 1 环境 FreeSWITCH : FreeSWITCH-1.10.11-dev OS: debian bullseye gcc:10.2.1 gdb:10.1.99 2 FreeSWITCH启动流程 2.1 main函数的主要工作 FreeSWITCH在main函数中
阅读全文
摘要:uuid_media_reneg接口实现流程 一、实现位置 uuid_media_reneg api接口位于mod_command模块,函数位置定义在mod_command.c大约3741行左右。原型如下: SWITCH_STANDARD_API(uuid_media_neg_function) {
阅读全文
摘要:基于Kamailio和RTPProxy实现FreeSWITCH SIP和RTP数据包负载均衡 一、环境 debian bullseye Kamailio 5.7.2 RTPProxy 3.0-rc.1.2dbc63b9 FreeSWITCH· 1.10.10 二、安装Kamailio和RTPProx
阅读全文
摘要:Kamailio源码编译 一、环境 1、OS:Debian bullseye 2、版本:Kamailio-5.7.2 3、MySQL 5.7 二、编译 1、在Kamailio-5.7.2目录下执行如下指令,生产modules.lst文件 make FLAVOUR=kamailio cfg 2、打开m
阅读全文
摘要:1、环境说明 实验环境:Ubuntu 16.04 + Heartbeat_3.0.6-2+FreeSWITCH _1.10.5+nginx_1.10.3 Heartbeat 下载地址:https://launchpad.net/ubuntu/xenial/amd64/heartbeat/1:3.0.
阅读全文
摘要:tomcat环境下部署verto客户端 1. generate a self-signed certificate for Tomcat using OpenSSL Step 1: Generate a private key openssl genpkey -algorithm RSA -out
阅读全文
摘要:verto communicator 模块编译 一、环境 debian 11,gcc 10.2.1,openssl 1.1.1n ,freeswitch 1.10.10,测试终端 windows 10 64 位 (浏览器:Microsoft edge 115.0.1901.183 64 位 ,Chr
阅读全文
摘要:Verto模块启用 一、环境 debian 11,gcc 10.2.1,openssl 1.1.1n ,freeswitch 1.10.10,测试终端 windows 10 64 位 (浏览器:Microsoft edge 115.0.1901.183 64 位 ,Chrome 112.0.5615
阅读全文
摘要:麒麟V10 FS编译 一、环境说明 操作系统:麒麟V10 cpu架构:鲲鹏版ARM(64位) 数据库:达梦8.0 FreeSWITCH:1.10.10 二、编译前准备 下载相应版本库: 例如:安装gcc、g++、make、cmake、autoconf等工具,下载地址为: 1 https://upda
阅读全文
摘要:本文介绍认证模式网关配置 配置demo如下,文件存放路径/freeswitch/conf/sip_profiles/external/gw01.xml: 1 <include> 2 <gateway name="gw01"> 3 <param name="username" value="10000
阅读全文
摘要:一、安装sofia-sip cd /usr/local/src/freeswitch-1.10.5.-release git clone https://github.com/freeswitch/sofia-sip.git cd sofia-sip ./configure make make in
阅读全文
摘要:1、配置网关 配置网关gw1 1 <include> 2 <gateway name="gw1"> 3 <param name="username" value="90231"/> 4 <param name="realm" value="112.242.28.98:5060"/> 5 <param
阅读全文
摘要:1、安装预备库 更新源:deb https://security.debian.org/debian-security bullseye-security main non-free contribapt install -y build-essential gdb gnupg2 wget auto
阅读全文
摘要:在public.xml上设置视频编码: <action application="export" data="nolocal:absolute_codec_string=PCMA,H264"/> 在dialplan中修改SDP消息 <action application="set"><![CDATA
阅读全文
摘要:在某些场景需要把摄像头或者其它推流视频加入FreeSWITCH。因此可以采用如下方式处理: 安装mod_vlc 然后在配置文件中加入 < action applicaiton=”playback” data=”vlc://rtsp://xxxx/vod”> 或者在fscli命令行输入: origin
阅读全文