konakona
Diamond Member
link
I managed to google the link for exactly what I am trying to do, and completed the prerequisite steps of obtaining IPKall account(phone number) and installing asterisk.
Now, I figure those lines belong in some kind of config file. Where should I start looking? Any input is appreciated, thanks.
First, register an IPKall number at the web addresses provided above.
IPKall will ask for the following information:
SIP phone number
SIP proxy
When specifying the SIP number, you can use any number, but should try to avoid using
a number that's already an extension in your extensions.conf file.
Put the IP address of your Asterisk server into the SIP proxy field.
If your SIP proxy is not running on the default port 5060, then you will need to change the port.
For example, if your IP is 123.456.789.0 and your SIP proxy is running on port 7777,
then you would enter 123.456.789.0:7777 as the SIP proxy address.
Here is a sample IPKall configuration for sip.conf and extensions.conf.
Place this under [inbound]. (note, if [inbound] already exists, don't add it again):
important note: your incoming context may be, and probably is different than [inbound].
Replace [inbound] with the appropriate context in both extensions.conf and the code below.
exten => 508,1,Goto(your-main-menu|s|1) ;IPKall rocks!
Where 508 is the SIP phone number you specified when setting up IPKall.
Now, put the following information in your sip.conf file:
[508] ;IPKall
type=peer
dtmfmode=rfc2833
context=inbound
insecure=very
nat=no
I managed to google the link for exactly what I am trying to do, and completed the prerequisite steps of obtaining IPKall account(phone number) and installing asterisk.
Now, I figure those lines belong in some kind of config file. Where should I start looking? Any input is appreciated, thanks.