zoukankan      html  css  js  c++  java
  • stun/turn

    1. Install stunserver on CentOS/Ubuntu
    yum -y install gcc
    yum -y install make
    yum -y install boost* # For Boost
    yum -y install openssl* # For OpenSSL
    wget  http://www.stunprotocol.org/stunserver-1.2.3.tgz
    tar zxvf stunserver-1.2.3.tgz
    cd stunserver
    make

    apt-get install g++  
    apt-get install make  
    apt-get install libboost-dev # For Boost  
    apt-get install libssl-dev # For OpenSSL  
    wget http://www.stunprotocol.org/stunserver-1.2.13.tgz
    tar -zxvf stunserver-1.2.13.tgz
    make

    ./stunserver
    netstat -ap | grep 3478
    udp        0      0 *:3478                  *:*                                 3658/stunserver
    sudo ./stunclient 127.0.0.1 3478
    Binding test: success  
    Local address: 127.0.0.1:41348  
    Mapped address: 127.0.0.1:41348

    2. sipml5 ICE Servers:
    [{url:'stun:8.134.18.182:3478'}]

    3. Install coturn on CentOS/Ubuntu
    sudo yum install coturn/sudo apt-get install coturn

    systemctl stop coturn
    systemctl start coturn

    4. simple mode
    turnserver -o -a -f -v --mobility -m 10 --max-bps=100000 --min-port=10000 --max-port=10050 --user=test:test123 -r test

    # stop
    ps aux | grep turnserver
    found process id,example:2059
    kill 2059

    5. custom config
    cp /etc/coturn/turnserver.conf /etc/coturn/turnserver.conf.bak
    vi /etc/coturn/turnserver.conf
    ```
    ### add by zhoudd 20201225

    # Secure form for password 'qwerty':
    cli-password=qwerty

    # Specify the user for the TURN authentification
    user=test:test123

    # Further ports that are open for communication
    min-port=10000
    max-port=10050

    # Enable verbose logging
    verbose

    # Use fingerprint in TURN message
    fingerprint

    # Enable long-term credential mechanism
    lt-cred-mech
    ```

    6. sipml5 ICE Servers:
    [{url:'stun:8.134.18.182:3478'}]
    [{url:'stun:8.134.18.182:3478'},{url:'turn:8.134.18.182:3478', username:'test', credential:'test123'}]

    7. firewall open the port
    sudo firewall-cmd --permanent --add-port=3478/tcp
    sudo firewall-cmd --permanent --add-port=3478/udp
    sudo firewall-cmd --permanent --add-port=5349/tcp
    sudo firewall-cmd --permanent --add-port=5349/udp
    sudo firewall-cmd --permanent --add-port=63000-64535/udp
    sudo firewall-cmd --reload

    8. Reference
    1) How to set up and configure your own TURN server using Coturn
    https://gabrieltanner.org/blog/turn-server
    2) Configure Your Own TURN/STUN Server
    https://www.red5pro.com/docs/server/webrtc/turnstun/#step-by-step-install-on-an-ubuntu-linux-server
    3) ICE server set up in Ubuntu (Coturn)
    https://www.codetd.com/en/article/6415507
    4) Installation SSL certificates and Coturn for OpenMeetings 5.0.0-M4 on CentOS 7-8.pdf

  • 相关阅读:
    oracle 索引分区处于不可用状态怎么解决 规格严格
    去IOE 遇到Jdbc mysql sql_mode的坑[转载] 规格严格
    【java】高并发之限流 RateLimiter使用 规格严格
    信息泄露引发的资产失陷与检测分析 规格严格
    一种失陷设备识别与设备失陷度评估的方法、装置 规格严格
    加快ios的出包速度
    为游戏接入ios sdk的oc学习笔记
    缩小ios的包体
    python2排序
    Sentinel 控制台
  • 原文地址:https://www.cnblogs.com/dong1/p/14188595.html
Copyright © 2011-2022 走看看