Skip to content

Instantly share code, notes, and snippets.

@zyxar
Created March 28, 2014 00:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save zyxar/9822498 to your computer and use it in GitHub Desktop.
Save zyxar/9822498 to your computer and use it in GitHub Desktop.
[Kamailio + OverSIP] server deployment

Kamailio + OverSIP server deployment

OverSIP

  • Edit your /etc/apt/sources.list:

    deb http://deb.versatica.com precise main
    
  • Add repo key:

    wget -O - http://deb.versatica.com/deb.versatica.com.key | apt-key add -
    
  • Install:

    apt-get update
    apt-get install oversip
    
  • Launch:

    sudo service oversip start
    

Kamailio

  • Install standalone: follow the wiki

  • Configure modules discribed at forum, add lines at /usr/local/etc/kamailio/kamailio.cfg:

    modparam("registrar", "use_path", 1)
    modparam("registrar", "path_mode", 1)
    modparam("registrar", "path_use_received", 0)
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment