Question about commissioning of the E20s - CUCM and TMS

If we now run software CUCM 8.6.2 and 4.1 E20.  I played with CUCM and TMS supply by and a few questions.

It seems that there are some features that can be set via the TMS models that cannot be resolved via CUCM (MTU, custom, etc commands).  Is it possible to apply these settings through TMS while having the unit registered in CUCM?

Essentially, I want my call recording platform CUCM and control, but want to keep the granularity that TMS offers in terms of commissioning etc..  I expect the same problems with C-series, etc.

Am I right in saying that, in order to get the E20 to join CUCM, I need to define the external Manager to "CUCM", and thus eliminate any possibility of TMS to manage? Otherwise, what is I could have managed by TMS and then set the SIP of the E20 to point to CUCM via templates in TMS?

Any tips on that?

Hello

Having both TMS and CUCM to manage endpoints is not a good idea (yet). TMS and CUCM will return to each of the other toes with unpredictable results.

With TMS 13.2, I understand that you should be able to import the CUCM in TMS and then find all systems registered to it and import these into TMS, however in this case TMS plan only systems conferences and will manage them not active (you can see status of the call as well).  13.2 TMS is not yet released, so that's what I said must be in this version.

So basically now if you use CUCM, use CUCM provisioning and don't use TMS.  We focus on interactions with systems registered with CUCM TMS and it will be more developed on this in the future.  I recommend you check out the TMS13.2 release notes released to see if it is mentioned.

Thank you

Tags: Cisco Support

Similar Questions

  • Question about deleting of the LDAP user and integration

    In the Document "Management Console Help", he States:

    "You can't invite accounts of users that are mastered in a user directory LDAP; These accounts are created automatically when you synchronize the LDAP directory. »

    This means that after you configure an LDAP domain, the users specified by the filter should be automatically attracted to OnTrack? I don't see the ldap users during execution of an empty search for the administration console. At this point, I can also connect to the OnTrack using a valid LDAP user. I was trying to see if OnTrack worked similar to the Complutense University of MADRID, where the OnTrack user account would create once the user logs in the application.

    What I can do, is go to "Create a user" and enter a valid ldap user's email address. then I see this user in the full search. This user can also connect successfully.

    I wanted to know what was the expected behavior: it should be a 'register' required ldap users in ontrack before auth in the app? Is there a synchronization process that must be executed to pull in the ldap users?

    Also, is it current best practices of removing users? I see in the administration console there is a note that says: "Note: removing users is not supported."

    As always, thanks for the info!


    Thank you
    -ryan

    Ryan Sullivan | ECMconsultant
    http://www.ecmconsultant.NET/
  • Where can I ask a handful of general order questions about Firefox OS as a consumer and get the answers? (a forum or something similar)

    I have about seven questions about Firefox OS. I'm potentially interested in opting for a tablet that works instead of Android or iOS. I couldn't find a place to ask questions like that. Thank you!

    https://support.Mozilla.org/en-us/forums/Firefox-OS-English-Forum

    There is another option.

  • where to post a question about iTunes on the iPhone?

    I have a question about a problem with iTunes on the iPhone (iOS), but I do not see a 'Community' with this title (or anything close;  I have no idea what "iTunes U" means).

    For lack of a better idea, I just posted to the community "iTunes for Mac", but I don't think that's true.

    Please let me know where I should post to an iTunes on iPhone issue.  Thank you.

    It should probably be posted in the community Using iPhone Apple Support communities. I'll ask a host spend your question in iTunes for Mac, if it has not already been moved.

    EDIT: Just read your message, and I think it's probably better where it is (because you need help syncing your songs via iTunes on your Mac). He should be fine here, but if the moderators believe that he should be somewhere else, they will move for you.

  • Questions about an average of response spectrum and frequency of feeding mode.

    Hello

    I have a few questions about an average of mode. When I generate a sinusoidal signal from one output to two input channels channel to see if my DAQ card works well and vector averaged in the power spectrum for DFT, the amplitudes was different from the previous one of the amplitude, which was supposed to be 1 v peak. They range from 0.5 v to 0.6 v peak. When the calculation of the average model is RMS, the amplitudes were close to 1. I wonder what are the fomulas of RMS and average vector. Does that mean that I could not accurate if I use an average of vector? In a time of frequency response, why I coherences of difference and the amplitudes using the vector and the mean quadratic value?

    Thank you

    Ningyu

    rico1985,

    The differences in modes of generation are as they sound: 1 sample output only a sample writing, N samples will be released however many samples configure you for each entry, and the continuous samples released samples continuously until a specified user action happens (you press the stop button or a logic that you created gets fulfulled). The range of Signal output allows you to set a ceiling high and low level of your output signal and it only affects the quality keeping in this beach. Timing to set a deadline for the time between the acquisition of the sample. If a new sample becomes unavailable before the timeout setting, you will get an error. This is useful for looking at a network, because if the network goes down and you stop getting data from a machine and then you would like to know about it. I point you to those videos that are short tutorials on how to make the most of these actions in SignalExpress.The SignalExpress 3.0 Help file is also your first point of contact for all your questions on getting started. These two resources should get you up and running in SignalExpress in no time. (either by the way all your questions answered using these resources) Bravo!

  • Question about ActionBar on the first screen of the application

    Hi, I have a question about the actionbar behavior in the first screen of the application

    index.htm pushes immediately main.htm with actionbar. ActionBar clicks and responds correctly until I have add overflow on some buttons.

    When I click on the button of overflow, the overflow is displayed at the bottom of the page, the top of the overflow is put in correspondence with the upper part of the actionbar so buttons actionbar overflowing content is not visible.

    I reproduce this problem with the sample application.

    This is expected behavior? Is there a way around it?

    I was able to reproduce the problem and have connected it

    https://github.com/BlackBerry/bbUI.js/issues/329

  • Question about to browse the lines of a viewobject

    I want to iterate over the lines of a viewobject. So, I use the following code snippet to do:

            String amDef = "model.service.TestAM";
            String config = "TestAMLocal";
            ApplicationModule am = Configuration.createRootApplicationModule(amDef, config);
            ViewObject vo = am.findViewObject("EmployeesView1");
            RowSetIterator iterator = vo.createRowSetIterator(null);
            iterator.reset();
     while(iterator.hasNext())
            {
                Row currentRow = iterator.next();
      System.out.println("Value: " + currentRow.getAttribute(1));
            }        
            
     iterator.closeRowSetIterator();
     Configuration.releaseRootApplicationModule(am, true);
    

    Now, I had a question about this code snippet. He get all records from the table of data to the model layer, that is, to the application server? If so, what part of the code for this? vo.createRowSetIterator maybe?

    Your example of code appears that I wasn't there. The default iterator and one that you get by vo.createRowSetIterator are different.

    And do not forget to close the iterator, you created as you lose in other resources.

    Timo

  • Question about backing up the Lenovo factory

    Hi, I have an E530, I have a question about the Lenovo factory back, I'm a little unsure of the difference between the bootable media and just backup data.

    Is the bootable media just the equivalent to a disk of windows 7?

    the option data backup all currently installed on your laptop?

    I tried with the two checked options the other day and I got to the point where he solicited for disc DVD - RW 6 so I cancelled because I didn't know how much in total he would do, would be nice if he told me so I could better prepare.

    Also, if I was ever to use the data disks, would you boot from the startup disk you did first then also boot from CD 1 of the data disks?

    Hi James,

    We create these disks to customers of all time.  In our case we have Win 7 Pro, pre-loaded.  Win 8 discs are already included with the device.

    The process of factory recovery disks will create a set of disks [the E530 in the USA, to 4 DVD - Yes it would be nice to know how much to advance] will allow you to restore your machine out of the box.  The first disc it creates is a boot disk - you start from this when you start the recovery process - that's all it is. No file data/images for the restore process.  Other disks contain image files needed for restoration.  This does not save the user data. It is a different process.

    Since you started & cancelled the process, I'm not sure that it will allow you to re - burning the discs.  Because of the MS license restrictions, you are allowed to burn discs once.  We got all the way on the last drive and had the process fail [we don't know why - maybe bad disc?] and we cannot redo records because he thinks that we have successfully created their.  So, we have to call Lenovo support and ask them to send us a set of disks in Windows 7.

    I hope this helps...

    Al

  • Question about mismanagement of the effects in the construction of sequence

    Hi all

    I read the BPEL 2.0 document and met a question about management failures and the normal flow of control in the < sequence > construction.

    For example, in the following code fragment:

    <>sequence
    < call...
    < catch faultName = gt; a.
    < / call >
    < receive... >
    < / sequence >

    If fault one is taken and processed by error handler, when the fault handling ends at will are receive > activity start or jumped?

    According to the document: < receive > will begin when < call > complements, but the 'complete' includes the 'ends in vain", (i.e. a fault is stuck inside the < call > and dealt with)?

    Hope you can help me and thank you very much.

    Published by: user8301699 on April 9, 2009 19:04

    Hello

    You have reason, 'full' includes the 'ends in vain", (i.e. a fault is taken inside the and treated).

    Hope this answers your Q.

    See you soon
    Rémy Pucha

  • Question about volume adjust the volume knob - Satellite Pro U300

    Hello

    I have a problem with the volume control. When I adjust the volume using the button on the left side of the laptop, I can only choose 3 levels of "loudness":

    No volume, very quiet volume and maximum volume (from rabies).

    Is this normal, is not anyone have problems with this?
    I hope that the problem is because of the digital volume adjustment screw. The adjuster does not record the exact position of the volume button. Every time when I get a phone call at work (I listen to internet radio), I turn off the radio by using the adjustment screw on the side of the laptop. When I end the phone call, I always need to open the laptop and the volume on the windows task bar, because when I use the device volume control on the left side of the laptop, it will just immediately at maximum volume.

    Welcome them

    Hello

    It s very strange that your volume control contains only 3 levels of volume
    I noticed that Toshiba has released a new driver (v. 6.0.1.5473) sound on the European driver page.

    How about if the update driver sound?
    Audio driver certainly controls the volume sound and in my opinion it s worth a try.

    Good luck

  • Question about graphics on the Satellite A200-1VO card memory

    Hello
    How do you assign more memory to the graphics card on laptop Satellite A200-1V0?
    Thank you

    Hello

    in your case it s not possible to change the size of graphics by yourself, memory as graphics memory in your machine is shared with main memory, so if you upgrade main memory and graphics memory should increase. But this question is governed by the chipset and the user has no influence on it.

    Welcome them

  • A question of home on the Xoom 1 and 2 Xoom 10.1

    I have the original Xoom and got the Xoom 2 today. I know that the docs of the Xooms are not compatible, I managed to place the Xoom 2 on the standard doc without any problem. My question is, somehow harm the Xoom to 2 to use the doc just as a stand? I guess that I could not load with her, but that I bought the case for it today, its unfortunately lacky especially as a stand.

    Thanks for any input Wanda

    @nccoast,

    I wouldn't be able to plug the dock while using it as a stand, however, since the two presentations of pines might get shorted by a metal surface on the outside of your Xoom 2.

    -Doc

  • QUESTION about to connect the calling WinsCard.dll drive

    could not get the list of player and connect the player successfully by call winscard.dll under C:\Windows\system32 folder in my local PC, but the other PC could do that.

    My PC environment: 2002 XP, SP3
    the version of winscard.ll is August 4, 2008

    Hi Yang Yu,

    1. Is the issue with the computer recognizes the card reader or the card reader can't read the card?
    2. What is you receive the exact error message?
    3. What is the number and the model of the card reader?

    Refer to the article below and try the steps mentioned, if you use Windows XP Professional x 64 edition.

    A universal serial bus smart card reader that is connected to a Windows Server 2003-based computer may not detect the smart card

    http://support.Microsoft.com/kb/919922

    Your question does contain all the required information necessary for us to help you. Please provide more relevant information to continue troubleshooting as a result.

    How to ask a question

    http://support.Microsoft.com/kb/555375

  • How to create the file .bar question about what all the files to submit?

    My project works well in Debug and Release in the simulator mode?

    Question: How do I create the .bar file and which is the file to be submitted?

    What files should I put in the files of importation of orders and how is this different from Add filebundle? Any help is appreciated.

    Thank you.

    harshvt wrote:

    My project works well in Debug and Release in the simulator mode?

    Question: How do I create the .bar file and which is the file to be submitted?

    What files should I put in the files of importation of orders and how is this different from Add filebundle? Any help is appreciated.

    Thank you.

    The bar is all you need to submit the file.

    There are a number of positions (including many on this first page) on how to package and sign your app Note you only need to package your application (no sign) to the quality of the offer. Do not sign your bar so that you can allow people to buy/download your application.

  • Win 8 (Pro) - Questions on program files, the desktop icon and taskbar

    Hello

    I just upgraded successfully Win 7 (home) to Win 8 (Pro).

    I have a few questions in mind:

    Q1: A program icon can be PIN to the taskbar and desktop at the same time?

    Q2: Under Win 7, user can easily see all installed programs by clicking on all programs in the Start Menu and select no matter what and copy and paste it on the desktop or PIN to the taskbar task, but under Win 8, I could not find this feature. CAB user to access the program to install all at the same time? Or the user needs to type the name of the program to the search box one by one? How to pin it in the Start Menu Win 8 on the desktop instead?

    Appreciate someone could help me in this area.

    Thank you

    First question: Yes, of course.  You can place an icon where you want. Desktop, taskbar, start screen, at the same time.

    Second Question:

    The start of Windows 8 has a screen view "all programs" similar to the former in Windows 7 (except the new is full screen).  To get her on Windows 8, right click on an empty spot.  If you have Windows 8.1 update, which makes it easier to find by putting an arrow at the bottom of the main screen.

    To take an icon from the start menu or the list of applications and put them on your desktop, right click, choose "Open file location" and then copy / paste the icon on the desktop.

Maybe you are looking for

  • How can I use the USB OTG key with my iphone more than 6 s?

    Hello dear, Unfortunately, IPhone is not support OTG flash drive with is very important to me and I want to know if there is a way to make it active or not at all! Would you please place a comment on that? Thank you Adel

  • Suddenly the Enter key no longer works in the address bar

    If I type URL or such in the address bar, and then press ENTER, it does not. All panel open AutoComplete closes, but it does not submit my application. This began to happen yesterday, from what I can tell. Sad Panda.

  • Satellite A210 - the screen is just completely blank

    Hello I recently bought this laptop and I am generally satisfied. However, sometimes the screen will just totally Virgin (black screen) prevents me from doing something. I end up having to manually turn it off and restart it. Anyone know why this hap

  • 8 flow HP tablet 5901: anti-virus software HP Strem 8 model 5901

    I recently bought a Tablet HP 8 5901 flow.  She has Windows 8.1 on it.  I would like to install on it's free anti-virus software, but there are so many 'out there' that I don't know which one is better for this model of HP Tablet.  Therefore, I'm loo

  • Problemas con el tactil

    Hola buenas tardes voy thank me help I have a mini HP 2030 y estoy having problemas con el tactil is me pone loco is mueve solo como as fuera mause is baje UN programa y not me da bola no entiendo is between al Control Panel y parece than no responde