SPA514G - Device Information Only?

I have a few different models of the SPA5xx phones.  We got a new SPA514G but can't get this thing configured.
We upgraded the firmware thinking it may fix things, so we are at the latest 7.5.5
When accessing it via the web interface it comes up with
SPA514G Device Information
There is no way to login as admin, or change to basic | advanced modes etc.  It is just a view only mode.  Other phones we can go in and we get:
SPA502G Configuration Utility and can change anything we want.
What's going on here?  How do we get the Configuration Utility?

Thanks the the tips Dan, you were correct it was 'locked' to call manager.  I found a page that instructed how to switch it:
https://supportforums.cisco.com/docs/DOC-33361
Things are much better now.
Thanks!

Similar Messages

  • How come some apps won't play sound on a USB device but only on the internal speaker while others can?

    How come some apps won't play sound on a USB device but only on the internal speaker while others can? Mac OS 10.8.5

    You can simply set your system preferences
    Sound preference
    output - to whatever your USB device/audio interface is
    Your question seems a bit vague to me though. So can you actually inform us of what it is you are trying to do and give us examples with named kit.

  • JPCAP: Network Device Information Display

    hi i am using JPCAP to display network device information.. but, problem i am getting with following code is that it works only on first JComboBox value change and then, Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException occurs..
    import java.awt.*;
    import java.awt.TrayIcon.MessageType;
    import java.awt.event.*;
    import javax.swing.*;
    import jpcap.*;
    public class jpcap_example {
          * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              JFrame frame1 = new JFrame("Network Device(s) Information");
              String device_names[];
              JComboBox device_select;
              JPanel panel1 = new JPanel(new BorderLayout());
              JPanel panel2 = new JPanel(new GridLayout(5, 1));
              final JLabel IPAddress = new JLabel("IP Address", JLabel.LEFT);
              final JLabel SubnetMask = new JLabel("Subnet Mask", JLabel.LEFT);
              final JLabel Broadcast = new JLabel("Broadcast Address", JLabel.LEFT);
              final JLabel MACAddress = new JLabel("MAC Address", JLabel.LEFT);
              final JLabel Localloop = new JLabel("IsLocal", JLabel.LEFT);
              final NetworkInterface devices[] = JpcapCaptor.getDeviceList();
              device_names = new String[devices.length];
              for (int i = 0; i < devices.length; i++)
                   device_names[i] = devices.name;
              if (devices.length == 0)
                   JOptionPane.showMessageDialog(frame1, "Should run this app as root to see all hidden devices..", "Fatal Error", JOptionPane.ERROR_MESSAGE);
              device_select = new JComboBox(device_names);
              device_select.setForeground(Color.BLUE);
              device_select.setMaximumRowCount(3);
              panel1.add(device_select, BorderLayout.NORTH);
              panel2.add(IPAddress);
              panel2.add(SubnetMask);
              panel2.add(Broadcast);
              panel2.add(MACAddress);
              panel2.add(Localloop);
              panel1.add(panel2, BorderLayout.WEST);
              frame1.add(panel1);
              frame1.setSize(new Dimension(640, 480));
              frame1.setVisible(true);
              frame1.addWindowListener(new WindowAdapter()
                   @Override
                   public void windowClosing(WindowEvent e) {
                        // TODO Auto-generated method stub
                        super.windowClosing(e);
                        System.exit(0);
              device_select.addActionListener(new ActionListener(){
                   @Override
                   public void actionPerformed(ActionEvent e) {
                        // TODO Auto-generated method stub
                        JComboBox temp = (JComboBox)e.getSource();
                        IPAddress.setText("IPAddress");
                        SubnetMask.setText("SubnetMask");
                        Broadcast.setText("BroadcastAddress");
                        MACAddress.setText("MAC Address");
                        Localloop.setText("IsLocal?");
                        for (int i = 0; i < devices[temp.getSelectedIndex()].addresses.length; i++)
                             IPAddress.setText(IPAddress.getText() + devices[temp.getSelectedIndex()].addresses[i].address.toString());
                             SubnetMask.setText(SubnetMask.getText() + devices[temp.getSelectedIndex()].addresses[i].subnet.toString());
                             Broadcast.setText(Broadcast.getText() + devices[temp.getSelectedIndex()].addresses[i].broadcast.toString());
                        MACAddress.setText(MACAddress.getText() + devices[temp.getSelectedIndex()].mac_address.toString());
                        Localloop.setText(Localloop.getText() + devices[temp.getSelectedIndex()].loopback);
    can somebody please tell me where i am making mistake??                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    sorry, for late reply..
    i changed code for displaying mac address correctly (thought it should correct the problem but, still same error).. here's the change..
    for (int i = 0; i < devices[temp.getSelectedIndex()].mac_address.length; i++)
         int j = (int)devices[temp.getSelectedIndex()].mac_address;
         j &= 0xff;
         MACAddress.setText(MACAddress.getText() + " : "+ Integer.toHexString(j));
    Localloop.setText(Localloop.getText() + devices[temp.getSelectedIndex()].loopback);
    anyhow, it is showing exception in this line..Broadcast.setText(Broadcast.getText() + devices[temp.getSelectedIndex()].addresses[i].broadcast.toString());
    i wonder what could be problem in that line .. ??
    {for last value of i, it showed like fe80:0:0:.... in IP Address field; and ffff:ffff:ffff:ffff:0:0:0:0 in subnet mask .. before exception occured..
    i suppose i know what it is but, still not sure.. what is it??}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • External access of device information

    I have just discovered device central and I'm exploring the possibilities of it. I see there is a SDK for device central, but could it be used for other purposes than developing Plug-ins?
    I ask since I would like to use the device information from the "online library" in other external applications. For instance I could create a web page about devices which use the device central online library as a data source for device feature information.
    I have asked my local Adobe support this question, but they couldn't answer me. And I guess Adobe will not let me use this information for free, so I have to find the right people to ask at Adobe. Support suggested that I ask here

    Also take a look at:
    http://blogs.technet.com/b/exchange/archive/2015/02/11/configuring-multiple-owa-ecp-virtual-directories-on-the-exchange-2013-client-access-server-role.aspx
    With Exchange 2013 there’s one new reason to add to the list, separation of the client facing ECP settings pages, and the Exchange Administration Console (EAC) settings pages. Both of these are served by the ECP virtual directory, which is somewhat
    confusing I’ll admit. Basically the code behind the ECP virtual directory serves up either the personal ECP pages or the administrators EAC pages based upon on the credentials of the user logging in. Of course this means if you allow access to /ECP from the
    Internet (which you need to for OWA or Outlook users to go to ECP) you also allow someone with administrative credentials to log into EAC. Some customers don’t like this.
    So to summarize, the only reasons for which you might feel the need to create multiple OWA and ECP virtual directories:
    Separating admin/user ECP access. 
    Or scenario number 3 as described earlier, because you have different policies or settings, or authentication requirements
    Twitter!:
    Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

  • No Device Informations like WiFi-Mac, Serial Number, IMEI...

    Hello,
    we are using ZMM with some iPhones. Roling out a policy works fine, but I only get a few informations from the devices
    like Battery Level, Capacity and some more.
    But how do I configure ZMM to get more informations, like WiFi-Mac, SerialNumber, IMEI and Phone Number ?
    Every iPhone (iPhone 4, 4S, 5 & 5s) with different IOS Versions only show "N/A" in this fields.
    We are using ZMM 2.8.2. We started with 2.6.x and I thought that this informations will be available in newer versions. But nothing happened.
    Any Ideas how to get this informations from all connected devices ?
    Regards...

    Originally Posted by dmantz
    The process I have used to resolve this issue is the following:
    1. From the ZENworks app, use the menu option "Configuration"
    2. From the Configuration option, click on "Load Configuration File"
    3. The new configuration file will appear in the "Settings> Profiles"
    4. If you have a security code in place, the loading of the configuration will ask for the code.
    ** There may be a window that appears stating that the configuration will not update the current profile. In that case follow the next few steps.
    1. Uninstall the MDM profiles from the iPad.
    2. Re-register the iPad in ZMM
    3. Upon re-registering, the ZMM server will distribute the updated profiles and configuration.
    Hello again,
    thats exactly the way I configure our iDevices...
    Same problem. Mail sync works fine. Policys are working too. But there are now device informations like SN, IMEI and so on.
    I opened a SR at Novell and I'm searching for a ZMM specialist in NRW/Germany.
    Thanks again.

  • [cl_invalid_operation] OpenCL Error : Failed to retrieve device information! Invalid enumerated value!

    I am having random playback glitches on my Mac Pro 2014 using Premiere CC 7.2.2 and Media Encoder. I can't figure out the cause since its only in the playback and export of the footage. The source footage is glitch free.
    I have noticed these two warnings when loading Premiere and Media Encoder.
    [cl_invalid_operation] OpenCL Error : Failed to retrieve device information! Invalid enumerated value!
    Are the glitches due to this OpenCL Error and how can I fix it?

    That's 7.2. I'm on 7.2.2. which rolled out 4/23/2014. Never the less thanks for finding that link. I dont have crash issues with playback or fx. Just random playback glitches.
    Are you stating that the OpenCL error is caused by a software glitch from adobes end?

  • I am signed in itunes with me apple id and my iphone /ipad is in the same id but when i go in manage devices its only showing my iphone?

    I am signed into itunes with my id and my iphone / ipad are also on this id but when i go in to manage devices its only showing the iphone. Also just up dated my ipad now its saying not charging when its hooked up to the computer?

    If the problem persists, you'll probably have to make another apple id, it wont take off any games or music or apps or anything you've bought it will all stay there, i have two apple id's and i don't have a problem with anything.

  • Can I use the same itunes for my ipad and iphone?  Will the computer erase my other device information?

    Can I use the same itunes for my ipad and iphone on my computer?  Will the computer erase my other device information?

    The computer will not erase the information.  Each device will show up in iTunes as a separate device and you can control the information for each device through iTunes.

  • With brand new iphone 4s when plugging into computer itunes shows a blank page with an apple logo in top left and a small lock in the top right. right clicking iphone under devices shows only eject.

    with brand new iphone 4s when plugging into computer itunes shows a blank page with an apple logo in top left and a small lock in the top right. right clicking iphone under devices shows only eject.

    Having same issue here:
    https://discussions.apple.com/message/19043181#19043181

  • How to daisy chain thunderbolt devices with only one port

    I am using a macbook pro with one thunderbolt port. Quite a few thunderbolt devices have only a single thunderbolt port (don't support daisy chaining).
    Does anyone know of a thuderbolt hub that adds additional thunderbolt ports?
    If such a product does not yet exist, is it at least technically possible?
    Thanks!

    alexgrainger wrote:
    Quite a few thunderbolt devices have only a single thunderbolt port (don't support daisy chaining).
    Does anyone know of a thuderbolt hub that adds additional thunderbolt ports?
    If such a product does not yet exist, is it at least technically possible?
    (1) Thunderbolt does support daisy chaining up to 6 devices to the MBP's port (with some limitations). See
    <http://www.intel.com/content/www/us/en/io/thunderbolt/thunderbolt-technology-dev eloper.html>
    <http://docs.info.apple.com/article.html?path=Mac/10.7/en/mh35952.html>
    <http://www.macworld.com/article/158145/2011/02/thunderbolt_what_you_need_to_know .html>
    <http://en.wikipedia.org/wiki/Thunderbolt_(interface)>
    (2) Note that daisy chain and hub are not the same. However, my understanding is that, in principle, a Thunderbolt hub is feasible. I'm not aware if such a device is already on the market. I guess that whether or not Thunderbolt hubs will be eventually available depends on the demand.

  • Change CSV device information in subscription?

    We have: SQL Server Reporting Services 2008 R2 SP2.
    We have a report subscription that renders in CSV.  The ReportServer.config file has UTF-8 for the Encoding for the CSV rendering.  We want to leave that alone.  We want to change the encoding to UTF-16 for a single report subscription.
    TIA,
    -Peter

    Hi Peter,
    Just as you said, we can change the device information settings for the CSV rendering extension in ReportServer.config file. But the change would apply to all the reports on report server. As per my understanding, I don’t think we can change the CSV device
    information for a single report, let alone a single report subscription.
    Thank you for your understanding.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • HT5517 When im doing an airplay how come only audio no video on the TV? and its showing to my iphone this device can only play sounds to airplay!

    When i'm doing airplay ther is no video only audio! and from my iphone its say this device can only play sound to airplay!!!

    what video are you trying to stream via airplay?
    currently only video from youtube app or ipod app is supported.
    any other app will only stream the audio.

  • Can't get device information: Operation already in progress

    Hello,
    I am trying to connect my Microsoft Notebook Mouse 5000 and having a bit of trouble.  I am following the instructions I found here: https://wiki.archlinux.org/index.php/Bluetooth_Mouse
    I have all the packages installed and am able to search for and find my mouse.  The problem is when I try to connect to it.  I have tried using both these commands
    hidd --connect <bdaddr>
    hidd --show
    Both of them give me the same error message.  "Can't get device information: Operation already in progress"
    All the information I have found on this error just says to use the first command, which did not work.
    Any ideas on where to go from here?
    Thanks in advance.

    Hi,
    If you have the shadow directory function running (http:///help/lms_admin/index.html?config_EnblDsblShadowDir.html) then you will have a group of flat config files that are not linked with LMS in any other way.  That is to say that the files generated are simply text files residing within the shadow directory that should mirror what you have in the database.
    This function is one way.  LMS generates the file upon config change to 'shadow' what is in it's database.
    In regards to the C2960 24TC-L,  you need to obtain the sysObjectID for the device.  For example: 
    WS-C2970G-24TS has a sysObject ID of 1.3.6.1.4.1.9.1.527.
    If you navigate to the Device Status Page: http://:1741/cwportal/group/lms/lms-deviceadmin
    There you will find 'Supported Device Finder' where you can enter the device [IP,Display Name, etc].
    You can also navigate to Device Center, look for the star icon on the same line as 'Device Status' and click on it. Then choose 'SNMP Walk'.  This will return the OID in numerical format.
    Thanks

  • TS1538 My iTunes, after a short time, decides not to be able to recognize my devices, the only thing that fixes it is a re-install of itunes. it is getting irritating as this will be the 7th time i have had to do it. Any solutions?

    My iTunes, after a short time, decides not to be able to recognize my devices, the only thing that fixes it is a re-install of itunes. it is getting irritating as this will be the 7th time i have had to do it. Any solutions?

    The info that was on the old iPhone can only be retreived either by restoring from iCloud/iTunes back up or syncing from iCloud. You need to chek these places and if nothing is there then I'm sorry that data is gone and you will only have the back ups you see.
    But check iTunes back ups:
    Windows
    Edit>Preferences>devices
    Mac
    iTunes>Preferences>devices

  • HT1849 I have received notification that  the "Complete My Album", Music Speaks by Candice Glover is now available to download.  I have three devices that are all enabled to receive automatic downloads.  My problem is the same on all three devices.  Only

    I have received notification that  the "Complete My Album", Music Speaks by Candice Glover is now available to download.  I have three devices that are all enabled to receive automatic downloads.  My problem is the same on all three devices.
    Only 0.05 minutes download on each song with the exception of the original song purchase: I Am Beautiful.  What needs to be done to solve this problem?

    It seems that I have solved my issue by performing a full factory reset (erasing all content, something which I had hoped to avoid) restoring from an iCloud backup did not alleviate the issue, I had to set up as a new iPad.
    Hopefully anyone else else who has this issue in the future will be able to find this.

Maybe you are looking for