In sip.cfg located in my ftp for the phones, I see what is below. It  looks to be the same as what I see when I log into the http server on  each phone.<br>  <br>  &lt;sip&gt;<br>  &nbsp; .......<br>  &nbsp;&nbsp; &lt;dialplan dialplan.impossibleMatchHandling="0" dialplan.removeEndOfDial="1"&gt;<br>  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;digitmap  dialplan.digitmap="[2-9]11|0T|011xxx.T|[0-1][2-9]xxxxxxxxx|[2-9]xxxxxxxxx|[2-9]xxxT"  dialplan.digitmap.timeOut="3"/&gt;<br>  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;routing&gt;<br>  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;server  dialplan.routing.server.1.address=""  dialplan.routing.server.1.port="5060"/&gt;<br>  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;emergency  dialplan.routing.emergency.1.value="911"  dialplan.routing.emergency.1.server.1="1"/&gt;<br>  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/routing&gt;<br>  &nbsp;&nbsp; &lt;/dialplan&gt;<br>  .....<br>  &lt;/sip&gt;<br><br>  <br>  Here is extensions.conf as well:<br> 
 <br>  [general]<br>  static=yes<br>  writeprotect=no<br>  autofallthrough=yes<br>  clearglobalvars=no<br>  priorityjumping=no<br>  <br>  [globals]<br>  ATTENDANT=SIP/1006&amp;SIP/1002&amp;SIP/1011&amp;SIP/1009<br>  OUTBOUNDTRUNK=ZAP/g1<br>  <br>  [meetme-ext]<br>  exten =&gt; 600,1,MeetMe(1234|Mp|98765)<br>  <br>  [extentions]<br>  include =&gt; parkedcalls<br>  include =&gt; meetme-ext<br>  include =&gt; direct-to-voicemail<br>  exten =&gt; _10XX,1,Dial(SIP/${EXTEN},20,tT)<br>  exten =&gt; _10XX,n,Answer<br>  exten =&gt; _10XX,n,VoiceMail(u${EXTEN}@voicemail)<br>  exten =&gt; _10XX,n,Hangup()<br>  <br>  [voicemail]<br>  exten =&gt; _910XX,1,Wait(1)<br>  exten =&gt; _910XX,n,VoiceMailMain(${EXTEN:1}@voicemail)<br>  <br>  [direct-to-voicemail]<br>  exten =&gt; _810XX,1,VoiceMail(u${EXTEN:1}@voicemail)<br>  exten =&gt; _810XX,n,Hangup()<br>  <br>  [local]<br>  include =&gt; extentions<br>  include =&gt; voicemail<br>  <br>  [incoming]<br>  exten =&gt; s,1,Answer<br>  exten =&gt;
 s,n,Wait(2)<br>  exten =&gt; s,n,Set(TIMEOUT(response)=15)<br>  exten =&gt; s,n,Background(intro)<br>  exten =&gt; s,n,WaitExten()<br>  exten =&gt; s,n,Playback(vm-goodbye)<br>  exten =&gt; s,n,Hangup()<br>  exten =&gt; 0,1,Dial(${ATTENDANT},20,tT)<br>  exten =&gt; 0,n,Playback(vm-nobodyavail)<br>  exten =&gt; 0,n,Hangup()<br>  exten =&gt; 1,1,Directory(voicemail,extentions,f)<br>  exten =&gt; 2,1,Directory(voicemail,extentions)<br>  include =&gt; meetme-ext<br>  include =&gt; extentions<br>  exten =&gt; i,1,Playback(pbx-invalid)<br>  exten =&gt; i,2,Goto(incoming,s,1)<br>  exten =&gt; t,1,Playback(vm-goodbye)<br>  exten =&gt; t,2,Hangup()<br>  <br>  [outbound]<br>  ignorepat =&gt; 9<br>  include =&gt; parkedcalls<br>  exten =&gt; _9XXXXXXXXXX,1,Dial(${OUTBOUNDTRUNK}/ww${EXTEN:1},30,tT)<br>  exten =&gt; _9XXXXXXXXXX,2,Congestion()<br>  exten =&gt; _9XXXXXXXXXX,102,Congestion()<br>  exten =&gt; _91900NXXXXXX,1,Congestion()<br>  exten =&gt; _91976NXXXXXX,1,Congestion()<br>  exten
 =&gt; _91[123456789]XXNXXXXXX,1,Dial(${OUTBOUNDTRUNK}/ww${EXTEN:1},30,tT)<br>  exten =&gt; _91[123456789]XXNXXXXXX,2,Congestion()<br>  exten =&gt; _91[123456789]XXNXXXXXX,102,Congestion()<br>  exten =&gt; 9911,1,Dial(${OUTBOUNDTRUNK}/ww911)<br>  exten =&gt; 9411,1,Dial(${OUTBOUNDTRUNK}/ww411)<br>  exten =&gt; 0,1,Dial(${OUTBOUNDTRUNK}/ww0)<br>  <br>  [local-access]<br>  include =&gt; local<br>  include =&gt; outbound<br>  <br>  thanks<br>  <br>  <br><b><i>Sean Cook &lt;scook@kinex.net&gt;</i></b> wrote:<blockquote class="replbq" style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;">  -----BEGIN PGP SIGNED MESSAGE-----<br>Hash: SHA1<br><br>No... did you get this from the sip.cfg or did you assume that the<br>default is there?  Asterisk will send a 404 back to the phone if the<br>entry does not exist.... but if it is just sending before you are<br>finished then there is a problem... what do you have the TimeOut set for?<br><br>Sean<br><br>sdgesa
 gaeharth wrote:<br>&gt; [2-9]11|0T|011xxx.T|[0-1][2-9]xxxxxxxxx|[2-9]xxxxxxxxx|[2-9]xxxT<br>&gt; <br>&gt; I have never had this changed on any phones. This should be the default.<br>&gt; <br>&gt; Does this value change based on what extensions are available to the<br>&gt; phone via asterisk extensions file? In other words, does asterisk tell<br>&gt; the phone what extensions are available and then the polycoms change the<br>&gt; map themselves?<br>&gt; <br>&gt; thanks<br>&gt; <br>&gt; <br>&gt; <br>&gt; <br>&gt; */Sean Cook <scook @kinex.net="">/* wrote:<br>&gt; <br>&gt; This sounds like a digitmap issue... from your sip.cfg what is your<br>&gt; digitmap set to?<br>&gt; <br>&gt; Sean<br>&gt; <br>&gt; sdgesa gaeharth wrote:<br>&gt;&gt; I am using the latest firmware and bootrom and this is a problem with<br>&gt;&gt; all 12 polycom 501s that we have in the office. If I want to transfer<br>&gt;&gt; to 1005 for example while on the p hone with the original caller,<br>&gt; I
 press<br>&gt;&gt; transfer -&gt; blind -&gt; type "1", "0" then the phone clears the display<br>&gt;&gt; and the transfer fails. It only allows me to dial the first two digits<br>&gt;&gt; of the extension I want to transfer to. It even happens when I dial<br>&gt;&gt; local sip to local sip, not just sip to pstn. This seems like a config<br>&gt;&gt; mistake I made.....<br>&gt; <br>&gt;&gt; thanks<br>&gt; <br>&gt; <br>&gt;&gt; */Noah Miller /* wrote:<br>&gt; <br>&gt;&gt; Hi -<br>&gt; <br>&gt;&gt; &gt; I am not sure what I did but blind transfers do not work. The<br>&gt;&gt; Polycom does<br>&gt;&gt; &gt; not allow me to dial the extension of the person I want to<br>&gt;&gt; transfer to after<br>&gt;&gt; &gt; I hit:<br>&gt;&gt; &gt;<br>&gt;&gt; &gt; transfer -&gt; blind<br>&gt; <br>&gt;&gt; I would strongly suggest getting the latest firmware, and using the<br>&gt;&gt; sample<br>&gt;&gt; configuration files with that firmware to set up your phone. Th is<br>&gt; SHOULD<br>&gt;&gt; work.
 If it still does not work after doing this, there may be a<br>&gt;&gt; hardware<br>&gt;&gt; issue with your phone.<br>&gt; <br>&gt;&gt; - Noah<br>&gt; <br>&gt;&gt; _______________________________________________<br>&gt;&gt; --Bandwidth and Colocation provided by Easynews.com --<br>&gt; <br>&gt;&gt; Asterisk-Users mailing list<br>&gt;&gt; To UNSUBSCRIBE or update options visit:<br>&gt;&gt; http://lists.digium.com/mailman/listinfo/asterisk-users<br>&gt; <br>&gt; <br>&gt; <br>&gt; ------------------------------------------------------------------------<br>&gt;&gt; Brings words and photos together (easily) with<br>&gt;&gt; PhotoMail<br>&gt; <br>&gt;&gt; - it's free and works with Yahoo! Mail.<br>&gt; <br>&gt; <br>&gt; <br>&gt; ------------------------------------------------------------------------<br>&gt; <br>&gt;&gt; _______________________________________________<br>&gt;&gt; --Bandwidth and Colocation provided by Easynews.com --<br>&gt; <br>&gt;&gt; Asterisk-Users mailing
 list<br>&gt;&gt; To UNSUBSCRIBE or update options visit:<br>&gt;&gt; http://lists.digium.com/mailman/listinfo/asterisk-users<br>_______________________________________________<br>- --Bandwidth and Colocation provided by Easynews.com --<br><br>Asterisk-Users mailing list<br>To UNSUBSCRIBE or update options visit:<br>http://lists.digium.com/mailman/listinfo/asterisk-users<br><br><br>&gt; ------------------------------------------------------------------------<br>&gt; Yahoo! Mail<br>&gt; Use Photomail<br>&gt; <http: //pa.yahoo.com/*http://us.rd.yahoo.com/evt="38867/*http://photomail.mail.yahoo.com"><br>&gt; to share photos without annoying attachments.<br><br><br>&gt; ------------------------------------------------------------------------<br><br>&gt; _______________________________________________<br>&gt; --Bandwidth and Colocation provided by Easynews.com --<br><br>&gt; Asterisk-Users mailing list<br>&gt; To UNSUBSCRIBE or update options visit:<br>&gt;   
 http://lists.digium.com/mailman/listinfo/asterisk-users<br>-----BEGIN PGP SIGNATURE-----<br>Version: GnuPG v1.4.2 (MingW32)<br>Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org<br><br>iD8DBQFEGb+zy9wPyZpnL2URAjktAKCXDE7C2K/sLIdMFz8jfUAIU1oDDACfa1hQ<br>RtE7sUkbqSOWZZBjFTT4Czo=<br>=UqXr<br>-----END PGP SIGNATURE-----<br>_______________________________________________<br>--Bandwidth and Colocation provided by Easynews.com --<br><br>Asterisk-Users mailing list<br>To UNSUBSCRIBE or update options visit:<br>   http://lists.digium.com/mailman/listinfo/asterisk-users<br></http:></scook></blockquote><br><p>
                <hr size=1>Yahoo! Mail<br>
Bring photos to life! <a href="http://pa.yahoo.com/*http://us.rd.yahoo.com/evt=39174/*http://photomail.mail.yahoo.com">New PhotoMail </a> makes sharing a breeze.