How to interconnect two Asterisk Servers with a SIP trunk Internationally


 
Thread Tools Search this Thread
Special Forums IP Networking How to interconnect two Asterisk Servers with a SIP trunk Internationally
# 1  
Old 03-08-2012
How to interconnect two Asterisk Servers with a SIP trunk Internationally

How to interconnect two Asterisk Servers with a SIP trunk Internationally
Is it possible to setup an asterisk box in ex. Colombia S.A and another in the USA, setting up trunks between the boxes to speak to each other via sip or aix, create extensions, forward any incoming call on that local extension to the other country Asterisk box and then forward that extension incoming phone call to a cell phone in Colombia and do the same if a person wants to call me in the states? I was hoping that this would be a very cost effective way for my friends and I to save a bit of money. Essential I want to internationally connect my Trixboxes Trunks together. Can this be done?
__________________
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. High Performance Computing

Encrypting interconnect

Hi, i've got a qusetion regarding interconnect of compute nodes. In our company we are running a Simulation Cluster which is administrated by the Simulation department. Now our central IT requires to encrypt the interconnect of the compute nodes. Does anybody in that business encrypt... (3 Replies)
Discussion started by: fiberkill
3 Replies

2. Solaris

Cluster interconnect, adapter configuration

Hello I have problem with scinstall. I found information that i should`t configure public network before using scinstall. Each node configuration: 4 node, 3 network adapter on each node. 1 for public adapter and 2 for cluster interconnect. Two switches. After scinstall first node is... (1 Reply)
Discussion started by: time0ut
1 Replies

3. UNIX for Advanced & Expert Users

Asterisk / SIP Question.

I've asked this question on many other forums and no one seems to know, so that's why I posted in the experts forume. So I just got a new sip phone. It is connected via usb to box A in my bedroom. Box B is in the living room and is running asterisk connected with a Zaptel card to a POTS line. I'm... (1 Reply)
Discussion started by: petebear
1 Replies
Login or Register to Ask a Question
sip_delete_start_line(3SIP)			   Session Initiation Protocol Library Functions		       sip_delete_start_line(3SIP)

NAME
sip_delete_start_line, sip_delete_header, sip_delete_header_by_name, sip_delete_value - delete a SIP header or a header value SYNOPSIS
cc [ flag ... ] file ... -lsip [ library ... ] #include <sip.h> int sip_delete_start_line(sip_msg_t sip_msg); int sip_delete_header(sip_msg_t sip_header); int sip_delete_header_by_name(sip_msg_t msg, char *header_name); int sip_delete_value(sip_header_t sip_header, sip_header_value_t sip_header_value); DESCRIPTION
The sip_delete_start_line() function deletes the start line, a request or a response line, from the SIP message sip_msg. The sip_delete_header() function deletes the SIP header specified by sip_header from the associated SIP message sip_msg. The sip_delete_header_by_name() function deletes the SIP header name specified by header_name (long or compact form) from the SIP message sip_msg. The sip_delete_value() deletes the SIP header value specified by sip_header_value from the SIP header sip_header. When a SIP header or value is deleted, the corresponding header or value is marked as deleted. Lookups ignore headers or values that are marked as deleted. RETURN VALUES
These functions return 0 on success and the appropriate error on failure. The value of errno is not changed by these calls in the event of an error. ERRORS
On failure, the returned error could be one of the following: EINVAL If any of the required input is NULL. If the header or value to be deleted does not exist. If the header or value to be deleted has already been deleted. EPERM If the SIP message cannot be modified. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Committed | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
libsip(3LIB) SunOS 5.11 20 Jan 2007 sip_delete_start_line(3SIP)