Hi there,
sorry for bugging you with such a trifling question, but I tried to
send a patch to the documented RTPProxy maintainer (Maxim Sobolev)
twice (@PBXPress.com and @portaone.com) but I got a mail from
MAILER-DAEMON each time, claiming the user doesn't exist.
Thank you.
Best regards,
--
Jeremie Le Hen
< jeremie at le-hen dot org >< ttz at chchile dot org >
Hi everyone,
I'm doing some heavy tests on sems, which involves making lots of calls to
ivr & isdngw modules.
I noticed that the sems threads size (seen from process table or system
monitor) keep increases with every call made.
It wasn't release even when the call is already hangup, until it reach like
2GB, then I start getting pthread error code 12
whenever I tried calling. I have to restart sems to release the threads.
I'm no good in C language and not sure how I can handle the pthread error.
Can anyone give me some advice as how to utilize the memory usage for sems,
so that it can keep on running like SER?
Best Regards,
Jorain
Hi
I've installed openser dev 1.2 to test new acc module in my lab but
cant create DB in mysql server using ist openser_mysql, please see
this error:
]# openser_mysql.sh create
MySql password for root:
Domain (realm) for the default user 'admin': 10.0.1.231
creating database openser ...
/usr/local/sbin/openser_mysql.sh: line 262: method: command not found
/usr/local/sbin/openser_mysql.sh: line 262: from_uri: command not found
/usr/local/sbin/openser_mysql.sh: line 262: from_tag: command not found
/usr/local/sbin/openser_mysql.sh: line 262: to_uri: command not found
/usr/local/sbin/openser_mysql.sh: line 262: to_tag: command not found
/usr/local/sbin/openser_mysql.sh: line 262: callid: command not found
/usr/local/sbin/openser_mysql.sh: line 262: cseq_no: command not found
/usr/local/sbin/openser_mysql.sh: line 262: sip_code: command not found
/usr/local/sbin/openser_mysql.sh: line 262: sip_reason: command not found
real 0m0.000s
user 0m0.000s
sys 0m0.000s
/usr/local/sbin/openser_mysql.sh: line 262: callid: command not found
/usr/local/sbin/openser_mysql.sh: line 262: method: command not found
/usr/local/sbin/openser_mysql.sh: line 262: from_uri: command not found
/usr/local/sbin/openser_mysql.sh: line 262: from_tag: command not found
/usr/local/sbin/openser_mysql.sh: line 262: to_uri: command not found
/usr/local/sbin/openser_mysql.sh: line 262: to_tag: command not found
/usr/local/sbin/openser_mysql.sh: line 262: callid: command not found
/usr/local/sbin/openser_mysql.sh: line 262: cseq_no: command not found
/usr/local/sbin/openser_mysql.sh: line 262: sip_code: command not found
/usr/local/sbin/openser_mysql.sh: line 262: sip_reason: command not found
real 0m0.000s
user 0m0.000s
sys 0m0.000s
/usr/local/sbin/openser_mysql.sh: line 262: callid: command not found
ERROR 1064 (42000) at line 80: You have an error in your SQL syntax;
check the manual that corresponds to your MySQL serverversion for the
right syntax to use near '=0(root) gid=0(root)
groups=0(root),1(bin),2(daemon),3(sys),4(adm),6(disk),10(wh'at line 2
Hello,
I 've problem with rewritehost function in failure_route with openser 1.1.0
In core functions i don't know in which route can i use them, unlike
functions in modules.
I 'd like to make a failover system,
In route block rewritehost is successfull but on failure route there is
no effect i think,
i pass the host to t_relay, so it is relayed to correct host, but in
r-uri, there is incorrect host, and sip proxy reply with (SIP/2.0 400
Bad Request - 'Invalid IP Address)
route{
......
t_on_failure("1");
rewritehost("xxx.xxx.xxx.90");
t_relay();
.....
}
failure_route[1] {
t_on_failure("2");
append_branch();
rewritehost("xxx.xxx.xxx.91");
t_relay("xxx.xxx.xxx.91");
}
failure_route[2] {
# failover cisco (zajcek)
append_branch();
rewritehost("xxx.xxx.xxx.31");
t_relay("xxx.xxx.xxx.31");
}
Thanks any help,
Tamas
Hi everybody,
I saw this:
http://www.iptel.org/faq/how_can_i_get_load_balancing_failover_with_ser.
On asterisk, you can put and share on DB the dial plan and the sip
definition but not the information relative to the REGISTER message
(localisation). So, you cannot make perfect load-balanced servers.
We have here a lot of clients and asterisk boxes in 3 towns with a very
good connections between them.
I wondered if it's possible with ser to put and share in the database
the "REGISTER" information and so able any phone to connect to any
server ?
Thanks a lot for your help,
Best Regards,
Thomas
Hi,
I want to use basic multicast support in SER, but I don't know how to test
the multicast function on LAN to see whether it's working in SER.
The following are some descriptions about my version.
OS: Debian
kernel version: 2.6.8-2-686
SER version: 0.9.6
I add the following lines in ser.cfg.
mcast_loopback=yes
mcast_ttl=32
I use "/etc/ser start" to start SER. SER works good, but I don't know how to
verify multicast on LAN. If the UA(User Agent) is kphone or SJphone.
Thanks in advance.
Justin
Hello list!
I wonder how a UAC calculates the response to a 401 "Unauthorized"
message from a server.
I know that it works much like http digest authentication, but it's
not exactely the same, since I do NOT have the Quality of Protection
(qop) value. (Or am I wrong? My assumption is based on the fact that I
don't see a qop-value in the REGISTER message my kphone sends after
the 401)
I've written some piece of code that is (in pseudo code) like that:
HA1 = md5(username + ":" + realm + ":" + password)
HA2 = md5(digestURI)
response = md5(HA1 + ":" + nonce + ":" + recCounter + ":" + cNonce +
":" + qualOfProt + ":" + HA2)
username = "1000"
realm = "192.168.0.31"
password = "1000"
digestURI = "sip:192.168.0.31" <--- IS THIS CORRECT?? Or is it s.th
like "REGISTER sip: ..."?
nonce = "4520e111333a24d8c4f3d20c6171cc37dfa2be33"
recCounter = "00000001"
cNonce = "abcdefghi"
qualOfProt IS MISSING!
I know that my code is working for "normal" http digest authentication
but not for "sip digest authentication". So what am I doing wrong?
Thanks for replies in advance!
Regards,
Holger
Hi All,
I am trying to run a radius client using
radiusclient -f digest localhost auth <secretkry>
its giving error: error opening configuration file,
can anyone pls help me ??
its very urgent..
thanks in advance.
techno
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
Dear all,
Thank you very much for your time.
All, I read from tls.html (www.openser.org) that for making good certificate, we must add rootCA to calist file by using:
cat add_cacert.pem >> calist.pem
1.When I try to run it, I got error message. It can not execute? Why?
It says :"There is no command add_cacert.pem"
Does that command just make new file named "calist.pem"? (There is no difference between cacert.pem)
2. I compile TLS with openssl.0.9.7a. The openssl-0.9.7.a packet, I got when installing Redhat.
But, How can I know that TLS that I have build using openssl or ssl (for security) version? or How can we run openssl or ssl?
I do hope anybody can help me. Please..Thank you very much.
Regards,
Ferianto
---------------------------------
Stay in the know. Pulse on the new Yahoo.com. Check it out.
Hello,
I have a problem with my openser.cfg file, and especially with the way I
should deal with the fr_inv_timer. I can't get it to work in my
openser.cfgfile, and every time the timer ends I get the following
error:
6(21521) ERROR:tm:t_forward_nonack: no branch for forwarding
6(21521) ERROR:tm:w_t_relay: t_forward_nonack failed
The error occurs in a route bloc :
route[1] {
xlog("L_INFO", "INFO: route1 with r-URI $ru\n");
xlog("L_INFO", "test 14 : if(isflagset(2)) (line 200)\n");
if(isflagset(2)){
xlog("L_INFO", "-----> TRUE ,if the flag is set to 2, it
calls t_on_failure\n");
t_on_failure("1");
t_relay();
exit;
}
xlog("L_INFO", "EXECUTION test 15 : if (!t_relay()) (ligne 206)\n");
if (!t_relay()) {
xlog("L_INFO", "---------> TRUE\n");
sl_reply_error();
};
exit;
}
I have a log message at the beginning of failure_route[1] that shows that it
is not entered before the error occurs.
Could you tell me what's wrong ?
Thank you very much,
Antoine