1. Getting Started
  2. Installation

Installation

  1. Install SipT

    Install SipT via build.sh file.

    Terminal
    tar zxf SipT.tar.gzcd SipT./build.sh
  2. Configure your SipT

    Set SipT listen ip and port in your config/config.json file.

    config.json
    {
      "global": {
        "http": {
           "port": 11111,
           "listen": "0.0.0.0",
        },
      "sip": {
        ... ...
        "transport": [
          {
            "type": "udp",
              "listen": "127.0.0.1",
              "port": 15060,
          },
          ... ...
          {
            "type": "wss",
             "listen": "127.0.0.1",
             "port": 18081,
          }
        ]
      },
      ... ...
    }
    }
        
    
  3. Start service

    Terminal
    ./build-release/bin/SipT config/config.json
  4. Testing

    This is an example of an HTTP API request.

    Terminal
    $ curl http://127.0.0.1:11111/transports
    
    [
      "udp:127.0.0.1:15060",
      "wss:127.0.0.1:18081",
      "ws:127.0.0.1:18080",
      "tcp:127.0.0.1:15060",
      "tls:127.0.0.1:15061"
    ]
        
    

Copyright © 2024 Sonicwell Technology Ltd.