Re: [OpenSER-Users-ES] Instalacción Erronea

Javier Allende Astigarraga legolas.klaitxu at gmail.com
Sat Sep 15 11:17:48 CEST 2007


Ahora te envio los contenidos

openser.cfg

#
# $Id: openser.cfg 1827 2007-03-12 15:22:53Z bogdan_iancu $
#
# simple quick-start config script
# Please refer to the Core CookBook at
http://www.openser.org/dokuwiki/doku.php
# for a explanation of possible statements, functions and parameters.
#

# ----------- global configuration parameters ------------------------

debug=3            # debug level (cmd line: -dddddddddd)
fork=yes
log_stderror=no    # (cmd line: -E)
children=4

# Uncomment these lines to enter debugging mode
#fork=no
#log_stderror=yes
#

port=5060

# uncomment the following lines for TLS support
disable_tls = 1
listen = tls:192.168.122.128:5061
tls_verify_server = 1
tls_verify_client = 1
tls_require_client_certificate = 1
tls_method = TLSv1
tls_certificate = "/usr/local/etc/openser/tls/user/user-cert.pem"
tls_private_key = "/usr/local/etc/openser/tls/user/user-privkey.pem"
tls_ca_list = "/usr/local/etc/openser/tls/user/user-calist.pem"

# ------------------ module loading ----------------------------------

#set module path
mpath="/usr/local/lib/openser/modules/"

# Uncomment this if you want to use SQL database
loadmodule "mysql.so"

loadmodule "sl.so"
loadmodule "tm.so"
loadmodule "rr.so"
loadmodule "maxfwd.so"
loadmodule "usrloc.so"
loadmodule "registrar.so"
loadmodule "textops.so"
loadmodule "mi_fifo.so"

# Uncomment this if you want digest authentication
# mysql.so must be loaded !
loadmodule "auth.so"
loadmodule "auth_db.so"

# ----------------- setting module-specific parameters ---------------

# -- mi_fifo params --

modparam("mi_fifo", "fifo_name", "/tmp/openser_fifo")

# -- usrloc params --

#modparam("usrloc", "db_mode",   0)

# Uncomment this if you want to use SQL database
# for persistent storage and comment the previous line
modparam("usrloc", "db_mode", 2)

# -- auth params --
# Uncomment if you are using auth module
#
modparam("auth_db", "calculate_ha1", yes)
#
# If you set "calculate_ha1" parameter to yes (which true in this config),
# uncomment also the following parameter)
#
modparam("auth_db", "password_column", "password")

# -- rr params --
# add value to ;lr param to make some broken UAs happy
modparam("rr", "enable_full_lr", 1)

# -------------------------  request routing logic -------------------

# main routing logic

route{

    # initial sanity checks -- messages with
    # max_forwards==0, or excessively long requests
    if (!mf_process_maxfwd_header("10")) {
        sl_send_reply("483","Too Many Hops");
        exit;
    };

    if (msg:len >=  2048 ) {
        sl_send_reply("513", "Message too big");
        exit;
    };

    # we record-route all messages -- to make sure that
    # subsequent messages will go through our proxy; that's
    # particularly good if upstream and downstream entities
    # use different transport protocol
    if (!method=="REGISTER")
        record_route();

    # subsequent messages withing a dialog should take the
    # path determined by record-routing
    if (loose_route()) {
        # mark routing logic in request
        append_hf("P-hint: rr-enforced\r\n");
        route(1);
    };

    if (!uri==myself) {
        # mark routing logic in request
        append_hf("P-hint: outbound\r\n");
        # if you have some interdomain connections via TLS
        #if(uri=~"@tls_domain1.net") {
        #    t_relay("tls:domain1.net");
        #    exit;
        #} else if(uri=~"@tls_domain2.net") {
        #    t_relay("tls:domain2.net");
        #    exit;
        #}
        route(1);
    };

    # if the request is for other domain use UsrLoc
    # (in case, it does not work, use the following command
    # with proper names and addresses in it)
    if (uri==myself) {

        if (method=="REGISTER") {

            # Uncomment this if you want to use digest authentication
            if (!www_authorize("localhost", "subscriber")) {
                www_challenge("localhost", "0");
                exit;
            };

            save("location");
            exit;
        };

        lookup("aliases");
        if (!uri==myself) {
            append_hf("P-hint: outbound alias\r\n");
            route(1);
        };

        # native SIP destinations are handled using our USRLOC DB
        if (!lookup("location")) {
            sl_send_reply("404", "Not Found");
            exit;
        };
        append_hf("P-hint: usrloc applied\r\n");
    };

    route(1);
}


route[1] {
    # send it out now; use stateful forwarding as it works reliably
    # even for UDP2TCP
    if (!t_relay()) {
        sl_reply_error();
    };
    exit;
}

y el openserctrl

 $Id: openserctlrc 1827 2007-03-12 15:22:53Z bogdan_iancu $
#
# openser control tool resource file
#
# here you can set variables used in the openserctl

## your SIP domain
 SIP_DOMAIN=127.0.0.1

## database type: MYSQL or PGSQL, by defaulte none is loaded
 DBENGINE=MYSQL

## database host
 DBHOST=localhost

## database name
 DBNAME=****************

## database read/write user
 DBRWUSER=****************

## database read only user
 DBROUSER=******************

## password for database read only user
 DBROPW=**************

## database super user
 DBROOTUSER=***********

## type of aliases used: DB - database aliases; UL - usrloc aliases
## - default: none
ALIASES_TYPE="DB"

## control engine: FIFO or UNIXSOCK
## - default FIFO
 CTLENGINE="FIFO"

## path to FIFO file
# OSER_FIFO="FIFO"

## check ACL names; default on (1); off (0)
 VERIFY_ACL=1

## ACL names - if VERIFY_ACL is set, only the ACL names from below list
## are accepted
 ACL_GROUPS="local ld int voicemail free-pstn"

## presence of serweb tables - default "no"
 HAS_SERWEB="yes"

## verbose - debug purposes - default '0'
 VERBOSE=1

## do (1) or don't (0) store plaintext passwords
## in the subscriber table - default '1'
 STORE_PLAINTEXT_PW=0


y de paso pregunto para que la gente pueda hablar tiene que estar registrada
donde pongo la funcion if (!is_register())exit(0); dentro de route{} ??



El día 15/09/07, Saúl Ibarra <saghul at gmail.com> escribió:
>
> Como tienes esa parte del fichero openser.cfg y openserctlrc?
>
> El 15/09/07, Javier Allende Astigarraga <legolas.klaitxu at gmail.com>
> escribió:
> > pos nada acabo de hacer eso y sigo con la misma mierda
> > sudo make clean include_modules="mysql"
> > sudo make all include_modules="mysql"
> > sudo make install include_modules="mysql"
> >
> > y sigo con el mismo puto fallo
> >
> > openser -C
> >
> > INFO : mi_fifo:mi_destroy:memory for the child's mi_fifo_pid was not
> > allocated ->nothing to destroy
> >
> > El día 15/09/07, Saúl Ibarra <saghul at gmail.com> escribió:
> > > Si lo has compilado tu mismo, haz un make clean y luego vuelve a
> > > compilar incluyendo todos los módulos que necesites, y tranki que la
> > > config no te la borra :P
> > >
> > > El 15/09/07, Javier Allende Astigarraga <legolas.klaitxu at gmail.com >
> > escribió:
> > > > Bueno pos tras cargar mi memoria virtual intento arrancar Openser y
> me
> > dice
> > > > que el modulo de mysql.so esta obsoleto con lo cual me quedo como
> asi :|
> > ,
> > > > pero bueno pienso habra sido problema de la instalación de TLS que
> > tendria
> > > > que haber añadido el modulo de mysql por realizo otra instalación
> (sin
> > hacer
> > > > clean,eso lo voy a a probar ahora),me lo instala pero no me arranca
> > openser
> > > > me dice listening : Aliases: y de repente la petada del mi_fifo que
> si
> > lo
> > > > tengo puesto en el openser.cfg y en openserctrl .
> > > >
> > > > alguna idea??
> > > >
> > > > --
> > > > =====================================================
> > > > Legolas_Bilbao[ID2006][GKR]
> > > > Dios creo un equipo Perfecto a los demas los lleno de extranjeros
> > > > http://www.forosindicedonkey.com
> > > > http://usuarios.lycos.es/ligaforo/
> > > > =====================================================
> > > > _______________________________________________
> > > > Users-es mailing list
> > > > Users-es at openser.org
> > > > http://openser.org/cgi-bin/mailman/listinfo/users-es
> > > >
> > > >
> > >
> > >
> > > --
> > > Saúl -- "Some people say why, other just say, why not."
> > >
> > ----------------------------------------------------------------
> > > http://www.saghul.net/
> > >
> > > _______________________________________________
> > > Users-es mailing list
> > > Users-es at openser.org
> > > http://openser.org/cgi-bin/mailman/listinfo/users-es
> > >
> >
> >
> >
> > --
> > =====================================================
> > Legolas_Bilbao[ID2006][GKR]
> > Dios creo un equipo Perfecto a los demas los lleno de extranjeros
> > http://www.forosindicedonkey.com
> > http://usuarios.lycos.es/ligaforo/
> > =====================================================
> > _______________________________________________
> > Users-es mailing list
> > Users-es at openser.org
> > http://openser.org/cgi-bin/mailman/listinfo/users-es
> >
> >
>
>
> --
> Saúl -- "Some people say why, other just say, why not."
> ----------------------------------------------------------------
> http://www.saghul.net/
>
> _______________________________________________
> Users-es mailing list
> Users-es at openser.org
> http://openser.org/cgi-bin/mailman/listinfo/users-es
>



-- 
=====================================================
Legolas_Bilbao[ID2006][GKR]
Dios creo un equipo Perfecto a los demas los lleno de extranjeros
http://www.forosindicedonkey.com
http://usuarios.lycos.es/ligaforo/
=====================================================
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.kamailio.org/pipermail/sr-users-es/attachments/20070915/0676d9f7/attachment-0002.htm 


More information about the Users-es mailing list