Sorry, I did not change the subject line before sending the email below.
Scott Morris
Enterprise Network Engineer
DOE - ORAU / ORISE
865-576-4672
-----Original Message-----
From: Morris, Scott
Sent: Monday, January 26, 2004 11:00 AM
To: serusers(a)lists.iptel.org
Subject: RE: [Serusers] voicemail (again)
We have a few Polycom video devices, which only support H.323. What
experience have SER admins had with various H.323/SIP gateways?
Scott Morris
Enterprise Network Engineer
DOE - ORAU / ORISE
865-576-4672
We have a few Polycom video devices, which only support H.323. What
experience have SER admins had with various H.323/SIP gateways?
Scott Morris
Enterprise Network Engineer
DOE - ORAU / ORISE
865-576-4672
Hello,
I'm trying to install sems so that I can configure my ser proxy to support
voicemail functions.
I have downloaded the last CVS version of sems and I'm currently running ser
version 0.8.12
I got these error every time I try to start sems:
Sems[12051]: Warning: /etc/sems/sems.conf:59 configuration: ignoring
unknown parameter announce_path
Sems[12051]: Warning: /etc/sems/sems.conf:64 configuration: ignoring
unknown parameter default_announce
Sems[12051]: Warning: /etc/sems/sems.conf:69 configuration: ignoring
unknown parameter max_record
Sems[12054]: Warning: no configuration found for module announcement, maybe
you want to specify config.announcement in config file.
Sems[12054]: Error: while loading plug-in
'/usr/local/lib/sems/plug-in/apps/announcement.so'
Sems[12053]: Warning: signal 17 received
Another question: Is ser 0.8.12 compatible with the last version of sems in
CVS?
Thank you very much.
Best reagards,
_______________________
João Sampaio
PT Inovação, SA
SRM - Serviços e Redes Móveis
email: est-j-sampaio(a)ptinovacao.pt
Tlf: +351 234511160-1907 / +351 234403421
Hi, just some small question while reading through the
installation README's....
Is the meaning of realm like 'hostname.domain.com'?
Dave
__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free web site building tool. Try it!
http://webhosting.yahoo.com/ps/sb/
I found this accidentally. Maybe this is something interesting for you!
http://www.kom.tu-darmstadt.de/Research/IP-telephony/ip-telephony.html
regards,
Klaus
> -----Original Message-----
> From: Jiri Kuthan [mailto:jiri@iptel.org]
> Sent: Friday, January 23, 2004 2:01 AM
> To: Arnd Vehling; serusers
> Subject: Re: [Serusers] Looking for a SIP<>H323 Proxy
>
>
> At 01:43 AM 1/20/2004, Arnd Vehling wrote:
> >Hi,
> >
> >can anyone suggest a Unix based (Linux or freebsd) SIP<>H323
> translator?
> >
> >We need to terminate calls with a business partner using H323 so our
> >setup would look like this:
>
> Is this a hard constraint? I mean finding SIP partners may be
> easier than
> peering with H.323 via some gateways....
>
> -jiri
>
> _______________________________________________
> Serusers mailing list
> serusers(a)lists.iptel.org
> http://lists.iptel.org/mailman/listinfo/serusers
>
>
hello,
i use ser 0.8.11 now. i think,that access control does not work fine.
For example: A user can only local call. It is namely:
When i use function: is_user_in("credentials","local"). It should be true.
When i use function: is_user_in("credentials", "ld"). It should be flase.
But in fact both case are flase.
Instead of is_user_in("credentials",..) I use is_user_in("From",..)later.
It works fine.
Is it a bug or my error?
regards
Yongcheng Chen
__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free web site building tool. Try it!
http://webhosting.yahoo.com/ps/sb/
You don't need two network cards, one is enough. This interface must be
configured with an IPv4 and an IPv6 address.
Klaus
> -----Original Message-----
> From: CURRO_DOMINGUEZ [mailto:CURRO_DOMINGUEZ@terra.es]
> Sent: Monday, January 26, 2004 10:49 AM
> To: serusers(a)lists.iptel.org
> Subject: [Serusers] SER, IPv6, IPv6/IPv4 interworking and more
>
>
> Hello
>
> After installing and running over last month SER, we are going to the
> next step. Our final goal is to deploy a SIP network which allows SIP
> clients Voice Call, Videoconference (RTP), Instant Message and
> Presence. And we want to use IPv6 and IPv4 networks.
>
> I wonder several questions about this:
>
> I'll use a SER server for IPv4 network and another for IPv6 network,
> but how I connect them? I think that I need a device with two network
> cards connected each one to IPv4 or IPv6. Which software has to run
> this device to act as a SIP Protocol Gateway? Can SER do this?
>
> Do you think that with the two proxy SER servers and the SIP Protocol
> Gateway would be enough or that I need another device to
> develope this?
>
> Thank you very much for your time and responses
>
> Curro
>
>
> _______________________________________________
> Serusers mailing list
> serusers(a)lists.iptel.org
> http://lists.iptel.org/mailman/listinfo/serusers
>
>
Hey guys,
Im playing with the voicemail .. again..and wondering on how I can make
my voicemail service take the phone after ~10 rings.
this is the if I'v got now..
- Atle
# Voicemail specific configuration - begin
if(method=="ACK" || method=="INVITE" || method=="BYE"){
if(t_newtran()){
t_reply("100","Trying -- just wait a minute !");
if(method=="INVITE"){
log("**************** vm start - begin ******************\n");
if(!vm("/tmp/am_fifo","voicemail")){
log("could not contact the answer machine\n");
t_reply("500","could not contact the answer machine");
};
log("**************** vm start - end ******************\n");
break;
};
if(method=="BYE"){
log("**************** vm end - begin ******************\n");
if(!vm("/tmp/am_fifo","bye")){
log("could not contact the answer machine\n");
t_reply("500","could not contact the answer machine");
};
log("**************** vm end - end ******************\n");
break;
};
}
else {
log("could not create new transaction\n");
sl_send_reply("500","could not create new transaction");
};
};
# Voicemail specific configuration - end
Hello
After installing and running over last month SER, we are going to the
next step. Our final goal is to deploy a SIP network which allows SIP
clients Voice Call, Videoconference (RTP), Instant Message and
Presence. And we want to use IPv6 and IPv4 networks.
I wonder several questions about this:
I'll use a SER server for IPv4 network and another for IPv6 network,
but how I connect them? I think that I need a device with two network
cards connected each one to IPv4 or IPv6. Which software has to run
this device to act as a SIP Protocol Gateway? Can SER do this?
Do you think that with the two proxy SER servers and the SIP Protocol
Gateway would be enough or that I need another device to develope this?
Thank you very much for your time and responses
Curro
Hi SER Gurus,
My SER server has been running just
perfect for the last 9 months and I am now trying to
connect my private VoIP network to my Employer's. They
have a Cisco Call Manager and I am trying to figure
out how to configure SER so I can make calls from my
private network to users that are registered to the
Corporate ( Cisco Call Manager ). Ideally I would like
to be able to make calls from my private network to
the users on the Corporate and have users on the
Corporate be able to reach users on my VoIp Network (
SER Server ). Any suggestions would be appreciated.
Below is current connectivity between my private
network and our corporate network.
SER Users --- SER Server --- Internet --- Cisco Call
Manager --- Corporate Users
Brgds,
Ray May
__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free web site building tool. Try it!
http://webhosting.yahoo.com/ps/sb/