 |
magicJack and MagicJack Plus Support, Reviews, FAQs and Hacks magicJack and magicJack Plus Unofficial Technical Support. Your Magic Jack and Magic Jack Plus phone service information resource
|
|
| View previous topic :: View next topic |
| Author |
Message |
steroids MagicJack User
Joined: 15 Jun 2009 Posts: 33
|
Posted: Mon Jul 13, 2009 11:25 am Post subject: ATAs working again using sipsorcery.com |
|
|
Sipsorcery has made code changes to support MagicJack, so you can now use your ATA with the MagicJack service!
Set up a new account or login to your existing account at www.sipsorcery.com
Setup the SIP account to register your ATA- Under SIP Accounts click the Add button
- Fill in your desired Username and password and leave all other fields alone
- Click Update and close
Now you should be able to get your ATA to register with sipsorcery.com with the following settings:- SIP Proxy: sip.sipsorcery.com
- User ID: yoursipaccountusername
- User Password : yoursipaccountpassword
Now refresh SIP Bindings on sipsorcery.com SIP Account page and you should see your ATA registered
Setup your to register with your MagicJack account
Under the SIP Providers tab click the Add button
Fill in the following fields:- Providername: Magicjack - or any other name you want to use
- User Name: Exxxxxxxxxxxx - your magicjack username
- Password: yourMJpassword - your magicjack password
- Server: sip:xxx.xxx.xxx.xxx:5070 - xxx.xxx.xxx.xxx should be replaced with your MJ sip proxy
- Register: checked
- Register Contact: sip: yoursipaccountusername@sipsorcery.com
Click Update and close
Now refresh SIP Provider Registrations and you should see MagicJack with a registered checkmark
That’s it. By default incoming and outgoing should be routed to MagicJack if you have not set up any other SIP Accounts or SIP Providers.
This is a really basic guide to only get MagicJack up and running, you can do a lot more with sipsorcery using calling plans and multiple providers.
NOTE: If outgoing does not work try adding a Dial Out plan to your SIP account like the one richardtaur has provided here - http://www.mysipswitch.com/forum/viewtopic.php?t=1477 _________________ Andy Rogers
email me: U0pFTi16dxTvDdmlaK0+8bg2sZT+DlHLd6Jc7vG3M9ixlSKvrQgccJjf7tU= |
|
| Back to top |
|
 |
Google AdSense

|
Posted: Mon Jul 13, 2009 11:25 am Post subject: Magicjack support, tips, tricks, and hacks |
|
|
|
|
| Back to top |
|
 |
laserjobs Dan Should Pay Me
Joined: 12 Nov 2007 Posts: 635
|
Posted: Mon Jul 13, 2009 11:36 am Post subject: |
|
|
| I can verify that sipsorcery did make some code changes and magicjack does register now! |
|
| Back to top |
|
 |
richardtaur Dan isn't smart enough to hire me
Joined: 17 Mar 2008 Posts: 123
|
Posted: Mon Jul 13, 2009 11:51 am Post subject: |
|
|
| Cool... |
|
| Back to top |
|
 |
destinycan MagicJack Newbie
Joined: 19 May 2009 Posts: 4
|
Posted: Mon Jul 13, 2009 12:03 pm Post subject: |
|
|
| Does it require MJ dongle? |
|
| Back to top |
|
 |
laserjobs Dan Should Pay Me
Joined: 12 Nov 2007 Posts: 635
|
Posted: Mon Jul 13, 2009 12:06 pm Post subject: |
|
|
| destinycan wrote: | | Does it require MJ dongle? |
No, it does NOT require a dongle or MJMD5 running on a computer or a router. Just follow the steps steroids put up and you should be good to go. |
|
| Back to top |
|
 |
craigm1 MagicJack User
Joined: 18 Jun 2008 Posts: 43
|
Posted: Mon Jul 13, 2009 12:32 pm Post subject: sip sorcery |
|
|
Can I use one account for 4 Mj lines I have 2 Pap2 Running right now with mjmd5 on 4 computer would i be able to run all 4 on one Sip sorcery account and have all my computer shut off
craig |
|
| Back to top |
|
 |
synchron Dan isn't smart enough to hire me
Joined: 15 May 2008 Posts: 229
|
Posted: Mon Jul 13, 2009 1:08 pm Post subject: |
|
|
I thought sipsorcery had a problem with incoming or is that only if you use the Ruby dial plan with 2 or more providers?
Also, not to be skeptic, but if a massive group of people are about to do this, shouldn't the instructions include the User-Agent String in the Custom Header field under Advanced Settings'? Is the Register Contact info correct? In other providers, this was the same as the Server field which is the proxy address. (Or is this what Aaron did to get it to work with MagicJack?) Also, sipsorcery is relatively new, requires Microsoft Silverlight to set up and is known to be buggy. Up to this point we've achieved our MJ sip credentials and applied them locally - this method requires you to take that and store it on the net somewhere. I have faith with Aaron & Co. who run both mysipswitch and sipsorcery but there's a concern about a mass explosion of new accounts and an overload on his server(s) causing downtime. Only time will tell.....
I'll check it out when I get home today but for those people that have gotten this to work with the MJMD5/DDWRT router method, I'd stick with that for now.
Synchron  |
|
| Back to top |
|
 |
VoIP_Dude MagicJack Newbie
Joined: 11 Jun 2009 Posts: 8
|
Posted: Mon Jul 13, 2009 1:42 pm Post subject: |
|
|
| synchron wrote: | | not to be skeptic, but if a massive group of people are about to do this, shouldn't the instructions include the User-Agent String in the Custom Header field under Advanced Settings'? Is the Register Contact info correct? In other providers, this was the same as the Server field which is the proxy address. (Or is this what Aaron did to get it to work with MagicJack?) |
I'm not sure why the 'old timers' here are always skeptical of noobies... Rather than being skeptic, do some research.
Go download the SIPSorcery source code. After unpacking, look for the module SIPProviderMagicJack.cs.
| Code: | /// <summary>
/// Tweaks the nonce on requests for provider MagicJack.
/// </summary>
public class SIPProviderMagicJack { |
It looks like Aaron is actually computing the nonce directly in his code:
| Code: | private static string GetNonce(string origNonce, string callId) {
string mjNonce = origNonce + "_";
for (int index = 0; index < 8; index++) {
int callIdIndex = Convert.ToInt32(origNonce[index].ToString(), 16);
mjNonce += callId[callIdIndex];
}
return mjNonce;
} |
| synchron wrote: | | Also, sipsorcery is relatively new, requires Microsoft Silverlight to set up and is known to be buggy. |
FUD.
| synchron wrote: | | Up to this point we've achieved our MJ sip credentials and applied them locally - this method requires you to take that and store it on the net somewhere. I have faith with Aaron & Co. who run both mysipswitch and sipsorcery but there's a concern about a mass explosion of new accounts and an overload on his server(s) causing downtime. Only time will tell..... |
If Aaron was worried about this, I doubt he would have implemented it.
| synchron wrote: | | I'll check it out when I get home today but for those people that have gotten this to work with the MJMD5/DDWRT router method, I'd stick with that for now. |
Whatever method works for you. Sipsorcery works fine for me. |
|
| Back to top |
|
 |
zixy_tris MagicJack User
Joined: 16 Jun 2008 Posts: 32
|
Posted: Mon Jul 13, 2009 1:43 pm Post subject: |
|
|
| works great. Awesome guys. I am putting user agent in header under advanced settings, is this correct |
|
| Back to top |
|
 |
zixy_tris MagicJack User
Joined: 16 Jun 2008 Posts: 32
|
Posted: Mon Jul 13, 2009 2:23 pm Post subject: |
|
|
| DIAL PLAN PLEASE GUYS |
|
| Back to top |
|
 |
robatino MagicJack Expert
Joined: 29 Aug 2008 Posts: 97
|
Posted: Mon Jul 13, 2009 2:29 pm Post subject: |
|
|
Any good reason why the Sipsorcery web site requires Silverlight?
Edit: Never mind, this was already mentioned above.
Last edited by robatino on Mon Jul 13, 2009 2:58 pm; edited 1 time in total |
|
| Back to top |
|
 |
laserjobs Dan Should Pay Me
Joined: 12 Nov 2007 Posts: 635
|
Posted: Mon Jul 13, 2009 2:31 pm Post subject: |
|
|
| zixy_tris wrote: | | DIAL PLAN PLEASE GUYS |
You should not need one if you are only using magicJack as a SIP Provider. Incoming and outgoing should work as your default.
For more info you can try on their forum
http://www.mysipswitch.com/forum/ |
|
| Back to top |
|
 |
wondabwoy magicJack Apprentice
Joined: 08 May 2009 Posts: 16
|
Posted: Mon Jul 13, 2009 3:38 pm Post subject: Re: ATAs working again using sipsorcery.com |
|
|
Ok, so I've done every thing stated here, and I see my ATA registered, but still cannot make or receive phone calls, I get a busy tone on all outgoing, and straight to voicemail on incoming. Could someone please may post screen shots of course with their info blanked out?
| steroids wrote: | Sipsorcery has made code changes to support MagicJack, so you can now use your ATA with the MagicJack service!
Set up a new account or login to your existing account at www.sipsorcery.com
Setup the SIP account to register your ATA- Under SIP Accounts click the Add button
- Fill in your desired Username and password and leave all other fields alone
- Click Update and close
Now you should be able to get your ATA to register with sipsorcery.com with the following settings:- SIP Proxy: sip.sipsorcery.com
- User ID: yoursipaccountusername
- User Password : yoursipaccountpassword
Now refresh SIP Bindings on sipsorcery.com SIP Account page and you should see your ATA registered
Setup your to register with your MagicJack account
Under the SIP Providers tab click the Add button
Fill in the following fields:- Providername: Magicjack - or any other name you want to use
- User Name: Exxxxxxxxxxxx - your magicjack username
- Password: yourMJpassword - your magicjack password
- Server: sip:xxx.xxx.xxx.xxx:5070 - xxx.xxx.xxx.xxx should be replaced with your MJ sip proxy
- Register: checked
- Register Contact: sip: yoursipaccountusername@sipsorcery.com
Click Update and close
Now refresh SIP Provider Registrations and you should see MagicJack with a registered checkmark
That’s it. By default incoming and outgoing should be routed to MagicJack if you have not set up any other SIP Accounts or SIP Providers.
This is a really basic guide to only get MagicJack up and running, you can do a lot more with sipsorcery using calling plans and multiple providers. |
|
|
| Back to top |
|
 |
snood MagicJack Newbie
Joined: 13 Jul 2009 Posts: 1
|
Posted: Mon Jul 13, 2009 3:49 pm Post subject: |
|
|
| Does anyone know how to do this on an old sunrocket gizmo AC-211? |
|
| Back to top |
|
 |
synchron Dan isn't smart enough to hire me
Joined: 15 May 2008 Posts: 229
|
Posted: Mon Jul 13, 2009 3:53 pm Post subject: |
|
|
ditto (wondabwoy).
ATA Registers.
Dialing out gives fast busy.
Incoming works!
For those that say it works, r u sure that OUTGOING works as well??
Synchron  |
|
| Back to top |
|
 |
|
 |
magicJack and MagicJack Plus Support, Reviews, FAQs and Hacks Forum Index
-> magicJack Tips, Tricks, and Hacks |
All times are GMT - 5 Hours Goto page 1, 2, 3, 4, 5, 6, 7 Next
|
| Page 1 of 7 |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|