When logging into SIPsorcery and looking at the call console: incoming calls are okay - it lists out a lot of 'stuff'. Outgoing calls however don't show a thing. It makes me think that the ATA isn't even connecting to sipsorcery. Registrations pop up regularly on the SIPsorcery console, and my device works fine when connected directly to Freephoneline so it makes me thinkg it's the configuration somewhere.
When I dial on my phone (whether it's 1416xxxxxxx or 416xxxxxxx both adding and not-adding a # at the end) I get a fast-busy signal and nothing on the sipsorcery console.
I've tried upgrading the firmware, doing full ATA resets to factory defaults, and completely deleted and recreated my profile/providers/dialplans on sorcery. Registrations appear fine under the Accounts and Provider sections of sorcery so now I'm asking for more help!
Anybody have any ideas or things to try?
My dialplan:
#Ruby
# Dial Plan Generated by Rubyzard v0.1
# If you need help, please post in our forum
# http://www.mysipswitch.com
# SIP tracing : true or false
sys.Trace = false
#sys.Log("call from #{req.Header.From.FromURI.ToString()} to #{req.URI.User}.")
# Do your INCOMING call processing customisations here.
if sys.In then
if sys.IsAvailable() then
sys.Dial("#{sys.Username}@local",30)
sys.Respond(480, "#{sys.Username} Not available")
else
sys.Dial("Enter Number@FPL",30)
sys.Respond(480, "#{sys.Username} Not available")
end
# Do your OUTGOING call processing customisations here.
else
sys.Dial("FPL")
end