<div>It is probable that even though you are specifying the phones to use g.711 that they are using g.722. You need to change the advertise g.722 parameter to false to make sure the phones use g.711 within region.</div>
<div> </div>
<div>Mike Primus<br><br></div>
<div class="gmail_quote">On Fri, Jun 13, 2008 at 4:20 PM, <<a href="mailto:cisco-voip-request@puck.nether.net">cisco-voip-request@puck.nether.net</a>> wrote:<br>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">Send cisco-voip mailing list submissions to<br> <a href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</a><br>
<br>To subscribe or unsubscribe via the World Wide Web, visit<br> <a href="https://puck.nether.net/mailman/listinfo/cisco-voip" target="_blank">https://puck.nether.net/mailman/listinfo/cisco-voip</a><br>or, via email, send a message with subject or body 'help' to<br>
<a href="mailto:cisco-voip-request@puck.nether.net">cisco-voip-request@puck.nether.net</a><br><br>You can reach the person managing the list at<br> <a href="mailto:cisco-voip-owner@puck.nether.net">cisco-voip-owner@puck.nether.net</a><br>
<br>When replying, please edit your Subject line so it is more specific<br>than "Re: Contents of cisco-voip digest..."<br><br><br>Today's Topics:<br><br> 1. QRT shows phone to phone calls as g.722 (Pattishall, Jan)<br>
2. Re: hiding AD users in Corp Directory (Pattishall, Jan)<br> 3. Re: Excluding Users from Corporate Directory on 6.1<br> (Pattishall, Jan)<br><br><br>----------------------------------------------------------------------<br>
<br>Message: 1<br>Date: Fri, 13 Jun 2008 17:07:18 -0400<br>From: "Pattishall, Jan" <<a href="mailto:Jan.Pattishall@synergit.com">Jan.Pattishall@synergit.com</a>><br>Subject: [cisco-voip] QRT shows phone to phone calls as g.722<br>
To: "<a href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</a>" <<a href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</a>><br>Message-ID:<br> <<a href="mailto:CB7131C29ECFE74698599A3EC0ECEDDC8E04705C6B@synergmail.pcsolutions.com">CB7131C29ECFE74698599A3EC0ECEDDC8E04705C6B@synergmail.pcsolutions.com</a>><br>
<br>Content-Type: text/plain; charset="us-ascii"<br><br>Hi All,<br><br>I am trying to troubleshoot a ccm6.x where users are complaining of calls to other users on the LAN are fading in and out.<br><br>When looking at the QRTs both source and receiver codecs for the 7942s are showing up as G.722; though they are defined to use G.711 to each other.<br>
<br>Has anyone seen this before? Is it just cosmetic?<br><br>Any help is much appreciated!<br><br>Jan<br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: <<a href="https://puck.nether.net/pipermail/cisco-voip/attachments/20080613/0e78c8ea/attachment-0001.html" target="_blank">https://puck.nether.net/pipermail/cisco-voip/attachments/20080613/0e78c8ea/attachment-0001.html</a>><br>
<br>------------------------------<br><br>Message: 2<br>Date: Fri, 13 Jun 2008 17:12:38 -0400<br>From: "Pattishall, Jan" <<a href="mailto:Jan.Pattishall@synergit.com">Jan.Pattishall@synergit.com</a>><br>Subject: Re: [cisco-voip] hiding AD users in Corp Directory<br>
To: Scott Voll <<a href="mailto:svoll.voip@gmail.com">svoll.voip@gmail.com</a>>, Joe Cisco<br> <<a href="mailto:smetsysocsic@gmail.com">smetsysocsic@gmail.com</a>><br>Cc: "<a href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</a>" <<a href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</a>><br>
Message-ID:<br> <<a href="mailto:CB7131C29ECFE74698599A3EC0ECEDDC8E04705C6D@synergmail.pcsolutions.com">CB7131C29ECFE74698599A3EC0ECEDDC8E04705C6D@synergmail.pcsolutions.com</a>><br><br>Content-Type: text/plain; charset="us-ascii"<br>
<br>The only way I have learned to do this is by writing a new filter and applying it to Callmanager using the AXL toolkit.<br><br>In our edirectory environment, we did this to only sync users who have something in the ipPhone field.<br>
<br>For LDAP it looks like this:<br><?xml version="1.0" encoding="UTF-8"?><br><!--DTD generated by XMLSPY v5 rel. 4 U (<a href="http://www.xmlspy.com/" target="_blank">http://www.xmlspy.com</a>)--><br>
<!DOCTYPE data [<br> <!ELEMENT data (sql+)><br> <!ELEMENT sql EMPTY><br> <!ATTLIST sql<br> query CDATA #IMPLIED<br> update CDATA #IMPLIED<br>
><br>]><br><data><br> <sql update="update ldapfilter set filter ='(ipPhone=*)' where tkldapserver=2"/><br> <sql query="select * from ldapfilter where tkldapserver=2"/><br>
</data><br><br>So for AD it should look like this:<br><?xml version="1.0" encoding="UTF-8"?><br><!--DTD generated by XMLSPY v5 rel. 4 U (<a href="http://www.xmlspy.com/" target="_blank">http://www.xmlspy.com</a>)--><br>
<!DOCTYPE data [<br> <!ELEMENT data (sql+)><br> <!ELEMENT sql EMPTY><br> <!ATTLIST sql<br> query CDATA #IMPLIED<br> update CDATA #IMPLIED<br>
><br>]><br><data><br> <sql update="update ldapfilter set filter ='(&amp;(objectclass=user)(!(objectclass=Computer))(!(UserAccountControl:1.2.840.113556.1.4.803:=2))(|(ipPhone=*)))' where tkldapserver=1"/><br>
<sql query="select * from ldapfilter where tkldapserver=1"/><br></data><br><br><br>Just be careful when applying it because the readme in the AXL toolkit isn't correct and the syntax should actually be:<br>
<br>java -cp .\classes;.\lib\saaj-api.jar;.\lib\saaj-impl.jar;.\lib\mail.jar;.\lib\activation.jar;.\lib\jaxm-api.jar;.\lib\jaxm-runtime.jar;.\lib\xercesImpl.jar;.\lib\xml-apis.jar AxlSqlToolkit -username=appadmin -password=****** -host=<a href="http://172.31.2.104/" target="_blank">172.31.2.104</a> -input=ADchange2.xml<br>
<br>From: <a href="mailto:cisco-voip-bounces@puck.nether.net">cisco-voip-bounces@puck.nether.net</a> [mailto:<a href="mailto:cisco-voip-bounces@puck.nether.net">cisco-voip-bounces@puck.nether.net</a>] On Behalf Of Scott Voll<br>
Sent: Friday, June 13, 2008 2:25 PM<br>To: Joe Cisco<br>Cc: <a href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</a><br>Subject: Re: [cisco-voip] hiding AD users in Corp Directory<br><br>more of a question then an answer, but could you only sync a particular OU and move the ones you want hinden to a different OU?<br>
<br>Scott<br>On Fri, Jun 13, 2008 at 10:59 AM, Joe Cisco <<a href="mailto:smetsysocsic@gmail.com">smetsysocsic@gmail.com</a><mailto:<a href="mailto:smetsysocsic@gmail.com">smetsysocsic@gmail.com</a>>> wrote:<br>
UC6.1 - LDAP/Active Directory Integrated. I know I've seen how to to this before, but maybe a different version of CM - how can I hide particular AD users that I don't want listed in corporate directory?<br><br>Thanks,<br>
<br>Joe C.<br><br>_______________________________________________<br>cisco-voip mailing list<br><a href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</a><mailto:<a href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</a>><br>
<a href="https://puck.nether.net/mailman/listinfo/cisco-voip" target="_blank">https://puck.nether.net/mailman/listinfo/cisco-voip</a><br><br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>
URL: <<a href="https://puck.nether.net/pipermail/cisco-voip/attachments/20080613/4abec93f/attachment-0001.html" target="_blank">https://puck.nether.net/pipermail/cisco-voip/attachments/20080613/4abec93f/attachment-0001.html</a>><br>
<br>------------------------------<br><br>Message: 3<br>Date: Fri, 13 Jun 2008 17:20:14 -0400<br>From: "Pattishall, Jan" <<a href="mailto:Jan.Pattishall@synergit.com">Jan.Pattishall@synergit.com</a>><br>Subject: Re: [cisco-voip] Excluding Users from Corporate Directory on<br>
6.1<br>To: Rodr?guez Mart?nez Vicente <<a href="mailto:VRODRIGZ@reduno.com.mx">VRODRIGZ@reduno.com.mx</a>>,<br> "<a href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</a>" <<a href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</a>><br>
Message-ID:<br> <<a href="mailto:CB7131C29ECFE74698599A3EC0ECEDDC8E04705C6E@synergmail.pcsolutions.com">CB7131C29ECFE74698599A3EC0ECEDDC8E04705C6E@synergmail.pcsolutions.com</a>><br><br>Content-Type: text/plain; charset="iso-8859-1"<br>
<br>Vicente,<br><br>Were you able to do this? Its pretty simple....<br><br>Just download the AXL toolkit and put it somewhere local to your machine; and make sure you are running java.<br><br>Write an XML file explaining what you want to do; I will put two examples below.<br>
<br>Then from a command prompt; browse to the directory where you saved this stuff and write type in the following using your CCM server, username and PW.<br><br>java -cp .\classes;.\lib\saaj-api.jar;.\lib\saaj-impl.jar;.\lib\mail.jar;.\lib\activation.jar;.\lib\jaxm-api.jar;.\lib\jaxm-runtime.jar;.\lib\xercesImpl.jar;.\lib\xml-apis.jar AxlSqlToolkit -username=appadmin -password=****** -host=<a href="http://172.31.2.104/" target="_blank">172.31.2.104</a> -input=ADchange2.xml<br>
<br>As far as the xml file goes; we wrote a filter and applying it to Callmanager using the AXL toolkit.<br><br>In our edirectory environment, we did this to only sync users who have something in the ipPhone field; and you can do the same for AD. Sample XML files are below. Note that the tkldapserver is 1 if you are doing AD integration and 2 if you are doing LDAP.<br>
<br><br>For LDAP it looks like this:<br><?xml version="1.0" encoding="UTF-8"?><br><!--DTD generated by XMLSPY v5 rel. 4 U (<a href="http://www.xmlspy.com/" target="_blank">http://www.xmlspy.com</a>)--><br>
<!DOCTYPE data [<br> <!ELEMENT data (sql+)><br> <!ELEMENT sql EMPTY><br> <!ATTLIST sql<br> query CDATA #IMPLIED<br> update CDATA #IMPLIED<br>
><br>]><br><data><br> <sql update="update ldapfilter set filter ='(ipPhone=*)' where tkldapserver=2"/><br> <sql query="select * from ldapfilter where tkldapserver=2"/><br>
</data><br><br>So for AD it should look like this:<br><?xml version="1.0" encoding="UTF-8"?><br><!--DTD generated by XMLSPY v5 rel. 4 U (<a href="http://www.xmlspy.com/" target="_blank">http://www.xmlspy.com</a>)--><br>
<!DOCTYPE data [<br> <!ELEMENT data (sql+)><br> <!ELEMENT sql EMPTY><br> <!ATTLIST sql<br> query CDATA #IMPLIED<br> update CDATA #IMPLIED<br>
><br>]><br><data><br> <sql update="update ldapfilter set filter ='(&amp;(objectclass=user)(!(objectclass=Computer))(!(UserAccountControl:1.2.840.113556.1.4.803:=2))(|(ipPhone=*)))' where tkldapserver=1"/><br>
<sql query="select * from ldapfilter where tkldapserver=1"/><br></data><br><br>Another user suggested the following XML for AD as well; which will also work:<br><br>><br>]><br><data><br>
<sql update="update ldapfilter set filter ='(&amp;(objectclass=user)(!(objectclass=Computer))(!(UserAccountControl:1.2.840.113556.1.4.803:=2))(|(ipPhone=1*)(ipPhone=2*)(ipPhone=3*)(ipPhone=4*)(ipPhone=5*)(ipPhone=6*)(ipPhone=7*)(ipPhone=8*)(ipPhone=9*)(ipPhone=0*)))' where tkldapserver=1"/><br>
<sql query="select * from ldapfilter where tkldapserver=1"/><br></data><br><br><br><br><br>From: <a href="mailto:cisco-voip-bounces@puck.nether.net">cisco-voip-bounces@puck.nether.net</a> [mailto:<a href="mailto:cisco-voip-bounces@puck.nether.net">cisco-voip-bounces@puck.nether.net</a>] On Behalf Of Rodr?guez Mart?nez Vicente<br>
Sent: Thursday, June 12, 2008 6:10 PM<br>To: <a href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</a><br>Subject: [cisco-voip] Excluding Users from Corporate Directory on 6.1<br><br>Matthew J. Hughes HI I saw You edited the sql database on CUCM 6.1 I'am trying to do the same just like You, but I have not been able to make it work, is it possible that You tell me step by step how to make it work? I'll appreciate Your comments thanks in advance...<br>
<br><br><br><br>Vicente Rodriguez Martinez<br>Consorcio Red Uno S.A. de C.V.<br>Av Vasconcelos 451 pte<br>Col Del Valle<br>Garza Garcia N.L.<br>Tel.-(81)83990952<br>Conmutador.-(81)83990900<br>Cel.-(81)8116368840<br><br>-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>URL: <<a href="https://puck.nether.net/pipermail/cisco-voip/attachments/20080613/1b280fe3/attachment.html" target="_blank">https://puck.nether.net/pipermail/cisco-voip/attachments/20080613/1b280fe3/attachment.html</a>><br>
<br>------------------------------<br><br>_______________________________________________<br>cisco-voip mailing list<br><a href="mailto:cisco-voip@puck.nether.net">cisco-voip@puck.nether.net</a><br><a href="https://puck.nether.net/mailman/listinfo/cisco-voip" target="_blank">https://puck.nether.net/mailman/listinfo/cisco-voip</a><br>
<br><br>End of cisco-voip Digest, Vol 56, Issue 88<br>******************************************<br></blockquote></div><br>