Hi
Where I write the sip server (pstn gateway) username and password ?
Or the gateway must allow per IP or host logins ?
roberto
You most likely need to add a section in the correct location in the cfg to change the dst based on the dialed digits such as below. You need to keep in mind where you put this in the script. Keep in mind that you don't want to step on the lookup for locally registered contacts.if (uri=~"^sip:1[0-9]{10}@") || (uri=~"^sip:[0-9]{10}@") || (uri=~"^sip:011[0-9]+@.*") {
if (uri=~"^sip:[0-9]{10}@") {
prefix("1"); # if sip provider require leading 1
};
rewritehostport("192.168.1.1:5060"); # to you sip provider
route(1); # send to t_relay route section
return;
};----- Original Message -----From: Robert KennedySent: Friday, March 10, 2006 7:29 AMSubject: [Users] Getting Started - Basic ProxyIm currently learning OpenSer and have accomplished the following:Installed: Centos 4.2OpenSer: V1.0.1I have 2 x-lite client registering and calling each other.Question: How do I proxy on SIP requests to a 3rd part SIP Provider. eg. Sipgatexlite ---> Ser ---> SipgateIm just getting confused on how to configure the next hop routing?Currently as expected im getting a 404 Not Found unless I call one of the x-lite phones. I want to be able to terminate out to a SIP-to-PSTN provider.
Regards
Rob.
_______________________________________________
Users mailing list
Users@openser.org
http://openser.org/cgi-bin/mailman/listinfo/users
_______________________________________________
Users mailing list
Users@openser.org
http://openser.org/cgi-bin/mailman/listinfo/users