Has anyone else already got things working between VFX and freeswitch?
FreeSwitch is growing in popularity and taking some of Asterisk's market-share. It's certainly growing quicker, and has some strong advantages.
I've been trying to get it set up with a VFX account, and have got the inbound side of things working, but am still struggling with dialing out. I'm fairly new to FreeSwitch, so it could well be something in my general config, rather than specific to VFX.
I figured I'd ask on here if anyone else has already got things working between VFX and freeswitch?
A more generic answer someone with asterisk may be able to answer - what format does vfx expect to get the destination number in? E.g.
006499501234
6499501234
099501234
99501234
Below is my config for inbound (pieced together by translating the asterisk instructions) in case that helps someone else (haven't gotten around to putting it on the freeswitch wiki yet.)
<include>
<gateway name="xnet">
<param name="username" value="18char_ID_string"/>
<param name="from-user" value="99501234"/>
<param name="password" value="20_char_password"/>
<param name="realm" value="pan.wxnz.net"/>
<param name="extension" value="where the call will be sent in dialplan.xml"/>
<param name="retry-seconds" value="10"/>
<param name="expire-seconds" value="300"/>
</gateway>
</include>
(those last 2 numbers might not be the best, just what I have at the moment.
My inbound does seem to re-register every minute, and sometimes fails on that.