John Breen wrote:
in mysql, and restarting SER. I can still dial
between internal phones
and that is all OK, but I cannot dial via asterisk. I don't even see
What does "I cannot dial" mean? What happens? What are your tring to
achieve (calling from a SIP phones to a PSTN number which will be
forwarded to Asterisk as the PSTN gateway? Other direction?)
calls getting there.
use ngrep with "-d any" to sniff on loopback interface too and post your
sipdump.
Further, do you use the correct functions from the permissions module to
authenticate Asterisk? If you only have a limited number of gateways you
can easily authenticate them with
if (src_ip == 127.0.0.1) {
# routing from GW to clients
...
} else {
# routing from clients to clients/GW
...
}
Further, even if signaling works - as others already said - you need a
RTP proxy on the same machine clients can't send RTP to 127.0.0.1
regards
klaus