Factory reset for cisco ip phone 7980

I am having issues finding documentation on how to wipe/reset the cisco 7980 video phone.
Could someone provide instructions?

I am guessing you meant 7985:
Press **# in order to unlock Network Configuration on the phone.
Press Settings.
Press 3 on the keypad (or scroll down) for Network Configuration.
Press 33 on the keypad (or scroll down) for Erase Configuration.
Press the Yes softkey.
Press the Save softkey
Please rate useful posts.

Similar Messages

  • HT4759 I did a a factory reset to my I phone 4G but it ask for the original owner account but I don't know the original owner, how can I activate my device?

    I did a a factory reset to my I phone 4G but it ask for the original owner account but I don't know the original owner, how can I activate my device?

    Unfortunately, you can't.  There's no way around it.  You'll have to get the ID and password used to originally activate the phone or you will not be able to activate it again.  If you can't contact them, try to get your money back because you won't be able to use it.

  • What to support for Cisco IP Phone 7912?

    dear all.  please help me!!!
    I have a 7912 ip phone, and using Cisco CME in 1760, but I do not see this type 7912 ip phone telephony service there. whether it was true ip 7912 phone is not support for the Cisco 1760 CME. and whether support for the cisco 7912 ip phone?  whether the telephony-service configuration is equal to the telephony-service configuration for the ip phone 7940?
    please help me  !!!

    Hi to all
    Please I ned some advice , I was try to reset to factory defaults a Cisco IP Phone 7912 and I was failed .
    Please can you help me ?
    Thanks a lot !
    Hugo Baez

  • RTP for Cisco IP Phones

    Hello friends!
    I'm developing an application for Cisco IP Phones that whorks with JMF. Since there are some programmers in this forum that knows Cisco IP phones, I send my question here.
    I was send succefully the XML message to phone (CiscoIPPhoneExecute), I was customized the paket's size to 160, etc. All works aparently. But audio stream does not reach to phone. Can anyone tell me why??
    Below I write my source code.
    Tanks!
    Max.
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import org.apache.xerces.impl.dv.util.Base64;
    import javax.media.*;
    import javax.media.control.*;
    import javax.media.format.*;
    import javax.media.protocol.*;
    * @author  Administrator
    public class MMHTTPPost {
        /** Creates a new instance of MMHTTPPost */
        public MMHTTPPost() {
            try {
                 * Envia el CiscoIPPhoneExecute al telefono
                String xml = new String("<CiscoIPPhoneExecute>"+
                                            "<ExecuteItem Priority=\"0\" URL=\"RTPRx:Stop\"/>"+"<ExecuteItem Priority=\"1\" URL=\"RTPRx:10.1.15.10:23480\"/>"+
                                            "</CiscoIPPhoneExecute>");
                String  userId      = "Max",
                        password    = "12345",           
                        basicAuth   = "Basic ",           
                        params      = "XML=" + URLEncoder.encode(xml, "ISO-8859-1" );    
                byte[]  bytes       = params.getBytes();
                // Create a URL pointing to the servlet or CGI script and open an HttpURLConnection on that URL       
                URL url = new URL( "http://10.1.15.56/CGI/Execute" );       
                HttpURLConnection con = ( HttpURLConnection ) url.openConnection();       
                // Indicate that you will be doing input and output, that the method is POST, and that the content       
                // length is the length of the byte array       
                con.setDoOutput( true );       
                con.setDoInput( true );       
                con.setRequestMethod( "POST" );       
                con.setRequestProperty( "Content-length", String.valueOf( bytes.length ) );
                // Create the Basic Auth Header       
                Base64 encoder = new Base64();
                basicAuth = (String)encoder.encode( ((String)(userId + ":" + password)).getBytes() );
                System.out.println("Codificado: " + basicAuth);
                con.setRequestProperty( "Authorization", "Basic " + basicAuth.trim() );
                // Write the parameters to the URL output stream       
                OutputStream output = con.getOutputStream();       
                output.write( bytes );       
                output.flush();       
                // Read the response       
                BufferedReader input = new BufferedReader( new InputStreamReader( con.getInputStream() ) );       
                while ( true ) {           
                    String line = input.readLine();           
                    if ( line == null )                
                        break;           
                    System.out.println( line );       
                input.close();       
                output.close();       
                con.disconnect();
                 * Aca empieza la parte RTP/JMF
                // Create a Processor for the selected file. Exit if the       
                // Processor cannot be created.       
                Processor processor = null;       
                try {           
                    String mediaUrl = "file:\\C:\\pruebas execute\\spacemusic.au";
                    processor = Manager.createProcessor( new MediaLocator(mediaUrl));       
                } catch (IOException e){           
                    System.out.println("Exception occured (1a): " + e);       
                } catch (NoProcessorException e){           
                    System.out.println("Exception occured (1b): " + e);       
                // configure the processor       
                //processor.configure();       
                //Espera el estado Processor.Configured
                boolean result = waitForState(processor, Processor.Configured);
                if (result == false)
                    System.out.println("No se pudo configurar el procesador...");
                // Block until the Processor has been configured       
                TrackControl track[] = processor.getTrackControls();       
                boolean encodingOk = false;       
                // Go through the tracks and try to program one of them to       
                // output ulaw data.       
                for (int i = 0; i < track.length; i++)        
                    if (!encodingOk && track[i] instanceof FormatControl)            
                        if (((FormatControl)track).setFormat( new AudioFormat(AudioFormat.ULAW_RTP,8000,8,1)) == null)
    track[i].setEnabled(false);
    else
    encodingOk = true;
    else
    // we could not set this track to ulaw, so disable it
    track[i].setEnabled(false);
    *Aqu? se cambia el tama?o del paquete a 160
    if (((TrackControl)track[i]).isEnabled()) {
    try {
    System.out.println("Cambiando la lista de codecs...");
    Codec codec[] = new Codec[3];
    codec[0] = new com.ibm.media.codec.audio.rc.RCModule();
    codec[1] = new com.ibm.media.codec.audio.ulaw.JavaEncoder();
    //codec[2] = new com.ibm.media.codec.audio.ulaw.Packetizer();
    codec[2] = new com.sun.media.codec.audio.ulaw.Packetizer();
    ((com.sun.media.codec.audio.ulaw.Packetizer)codec[2]).setPacketSize(160);
    ((TrackControl)track[i]).setCodecChain(codec);
    catch (Exception e){
    System.out.println("Error al cambiar el tamano del paquete: " + e);
    System.out.println("Encoding ok?: " + encodingOk );
    // At this point, we have determined where we can send out
    // ulaw data or not.
    // realize the processor
    if (encodingOk)
    //processor.realize();
    // block until realized.
    // get the output datasource of the processor and exit
    // if we fail
    //Espera el estado Processor.Realized
    result = waitForState(processor, Processor.Realized);
    if (result == false)
    System.out.println("No se pudo realizar el procesador...");
    DataSource ds = null;
    try
    ds = processor.getDataOutput();
    catch (NotRealizedError e)
    System.out.println("Exception occured(2): "+e);
    // hand this datasource to manager for creating an RTP
    // datasink.
    // our RTP datasink will multicast the audio
    try
    String mediaUrl= "rtp://10.1.15.56:23480/audio/1";
    MediaLocator m = new MediaLocator(mediaUrl);
    DataSink d = Manager.createDataSink(ds, m);
    d.open();
    d.start();
    catch (Exception e)
    System.out.println("Exception occured(3): "+e);
    catch ( MalformedURLException murlex )
    System.out.println( murlex );
    catch ( IOException ioex )
    System.out.println( ioex );
    * @param args the command line arguments
    public static void main(String[] args) {
    new MMHTTPPost();
    * Convenience methods to handle processor's state changes.
    private Integer stateLock = new Integer(0);
    private boolean failed = false;
    Integer getStateLock() {
         return stateLock;
    void setFailed() {
         failed = true;
    private synchronized boolean waitForState(Processor p, int state) {
         p.addControllerListener(new StateListener());
         failed = false;
         // Call the required method on the processor
         if (state == Processor.Configured) {
         p.configure();
         } else if (state == Processor.Realized) {
         p.realize();
         // Wait until we get an event that confirms the
         // success of the method, or a failure event.
         // See StateListener inner class
         while (p.getState() < state && !failed) {
         synchronized (getStateLock()) {
              try {
              getStateLock().wait();
              } catch (InterruptedException ie) {
              return false;
         if (failed)
         return false;
         else
         return true;
    * Inner Classes
    class StateListener implements ControllerListener {
         public void controllerUpdate(ControllerEvent ce) {
         // If there was an error during configure or
         // realize, the processor will be closed
         if (ce instanceof ControllerClosedEvent)
              setFailed();
         // All controller events, send a notification
         // to the waiting thread in waitForState method.
         if (ce instanceof ControllerEvent) {
              synchronized (getStateLock()) {
              getStateLock().notifyAll();

    ignore my last post.. I didn't properly read the source code.
    Anyway, I got g.711 streaming to work. I started out using the AVTransmit2 sample, but set the audio output format to what is used in the source code posted here. I've also applied the same codec chain described above, and that was it.
    I could never get streaming to work using the first RTP streaming method described in the JMF Programmers guide (and this is the method used in the source posted above), but using the RTPManager, things work just fine.

  • AnyConnect for Cisco VPN Phone demo license

    I want to test VPN Phone in the ASA5520,but "show ver" find the "AnyConnect for Cisco VPN Phone : Disabled", www.cisco.com/go/license i didn't find register AnyConnect for Cisco VPN Phone demo license, how to apply for the demo license??
    Licensed features for this platform:
    Maximum Physical Interfaces    : Unlimited
    Maximum VLANs                  : 150
    Inside Hosts                   : Unlimited
    Failover                       : Active/Active
    VPN-DES                        : Enabled
    VPN-3DES-AES                   : Enabled
    Security Contexts              : 2
    GTP/GPRS                       : Disabled
    SSL VPN Peers                  : 2
    Total VPN Peers                : 750
    Shared License                 : Disabled
    AnyConnect for Mobile          : Disabled
    AnyConnect for Cisco VPN Phone : Disabled
    AnyConnect Essentials          : Disabled
    Advanced Endpoint Assessment   : Disabled
    UC Phone Proxy Sessions        : 2
    Total UC Proxy Sessions        : 2
    Botnet Traffic Filter          : Disabled
    This platform has an ASA 5520 VPN Plus license.

    Hi there,
    Did you try
    https://tools.cisco.com/SWIFT/LicensingUI/loadDemoLicensee?FormId=717
    Cheers!
    Rob
    "Why not help one another on the way" - Bob Marley

  • Factory reset for the MEX-BT3100P

    How do you do a factory reset for the MEX-BT3100P car stereo.
    I've messed up something and can't get any sound, although it still beeps.  There is no reset button on the back, and a long time ago I had a sony rep explain to me the steps involved in doing a factory reset (some buttons to press) but can't find where that info is now.  I can't find it anywhere on the site, and it seems online chat and telephone support can't answer my question either.  Oh where oh where is that rep that I talked to so long ago?
    hope someone has the answer.
    thanks in advance.

    ok, so it seems that pressing DSPL and the BACK/MODE buttons for more than 2 seconds resets it, and it brought it back to demo mode...
    My CD still doesn't want to play though, so it must be a different problem I'm having... I can hear it boot up, and the timer starts to go suggesting that the song is playing, but no sound is coming out at all... 
    When I turn off the bike, the stereo beeps at me telling me not to forget the faceplate, so sound is capable of getting throught the speakers.  Anyone have any idea what I"m doing wrong?

  • AnyConnect for Cisco VPN Phone Spanless recording?

    I'm looking to add this to my existing ASA5520.
    Does AnyConnect for Cisco VPN phone support spanless recording?
    If not what options are there?
    Thanks,
    Mike

    Hi there,
    Did you try
    https://tools.cisco.com/SWIFT/LicensingUI/loadDemoLicensee?FormId=717
    Cheers!
    Rob
    "Why not help one another on the way" - Bob Marley

  • Cisco 6807 and 6800ia Swtich QOS for Cisco ip phones

    Does anyone have an example of configuring a 6800ia switch port connected to a 6807VSS parent for cisco ip phones qos.  Normally we'd use auto qos voip  but auto qos is not supported on 6800IA switches.
    Cant find any cisco documentation of what the IA switches port config should look like for a cisco ip phone.
    Any help would be appreciated.
    Thanks,
    Dave

    I'd leave QoS alone.

  • Accidently did a factory reset on a deactivated phone, need help to reactivate for Wi-Fi use. Its an iphone 3gs. Verizon please help

    hello
    Hoping someone can please help me. I bought a new phone 4 and gave the old phone (iphone 3g) to my 3 year old daughter. she loves it and can take pics, videos, and connect to wi-fi to download and play games. She's always wanting to play her educational games.
    , When i was trying to download some songs for her so she can listen to them. it asked me to do a factory reset. I didnt know what it was, so i dedcided to go ahead an do it Next thing you know, I can/t use the phone no more.
    When I turn on the phone, the first screen asks me to select my language, English or Espanol.  I select English and then it forwards me to the next screen. The next screen says, "Press Send to activate your phone".  When I click on Send, it requires me to enter my mobile phone number so that it can begin the activation of the phone.
    I dont want to activate this old phone to use for calls, I just want to fix the phone so that my daughter can continue to use it for her use by playin games listenin to music and whatever else she does.she really loves this phone. 
    But I can't get past the Activation screen to use the phone.  Can someone PLEASE PLEASE help me? maybe theres there is a activation number I can use to bypass that activation screen?i saw that verizon gave one to another guy for his samsung, maybe you guy can do the same for me?
    PLEASE HELP ME!
    Thank you in advance

    An iPhone 3GS was never available for use on the Verizon Wireless network?

  • Factory reset for Kufatec Fiscon in Audi A3 without a paired phone

    I just bought a second hand Audi A3 with the Kufatec Fiscon bluetooth system installed. I have been unable to pair my 5 or 5c with the Fiscon, even though it is showing up in the bluetooth menu on my phone.
    Reading through the forums it seems that one solution might be to factory reset the Fiscon system. Is it possible for me to do that without a phone that is paired to it? Without being able to pair, I am not sure how to pull up the Fiscon menus on any of the Audi system screens.
    Thanks in advance.

    Find a support site for the system in the car.
    It's not an Apple device.

  • Factory reset old LG android phone?

    I have a dilemma. I bought the new Samsung Galaxy S5 and have no use of my old LG Lucid smartphone.
    I went on setting and factory reset my LG phone.
    I still would like to use my LG phone, not really use it, but more of being able to access the programs like camera and wifi.
    After resetting it, it turned on and went to the setup wizard. It was mentioning something about activation.
    I was just wondering if this will activate my old phone? and deactivate my new phone? I am just afraid of accidentally activating my old phone and have ridiculous charges.

    If you still have a SIM card installed in the Lucid, remove it and you should then be good to go.  The phone requires a SIM card for activation.

  • ASA license for Cisco IP Phone over VPN

    Hi,
    Are there special licenses required on the ASA to use Cisco IP Phones (Hard phone) over SSL VPN connection?
    Thanks

    Hi,
    You can purchase the phone proxy license. This elimiates the need to build a VPN tunnel for voice traffic.
    It is not mandatory to purchase this license however.
    From the ASA configuration guide:
    http://www.cisco.com/en/US/docs/security/asa/asa83/configuration/guide/unified_comm_phoneproxy.html#wp1144845
    "The  Cisco Phone Proxy on the adaptive security  appliance bridges IP  telephony between the corporate IP telephony  network and the Internet  in a secure manner by forcing data from remote  phones on an untrusted  network to be encrypted. "
    Don't forget to rate all posts that are helpful.

  • Where to find the factory reset for Shuffle 3rd gen?

    My dad just bought a preowned iPod Shuffle 3rd generation.  We are needing to do a factory reset on it.  I tried to do the conventional way after plugging the Shuffle into the USB port.  After scanning for a while, it said it can't do a factory reset and gave me an error code of 1436.  I went to the page for that error and tried to download the reset utility for iPod Shuffle.  It said it wouldn't work on mine, it only works on 1st and 2nd gen.  I've looked everywhere for the utility manager for the 3rd generation.  I'm at a loss.  Can anyone help?

    *Bump*
    Anyone?

  • I need to do a factory reset for a Go desktop 6835 with Windows XP Does anyone know how??

    Does anyone know how to do a factory reset on the pavilion desktop 6835, ruining Windows XP?? I've tried what I did on my HP laptop, but it only restored the settings.

    Did the selller tell you what version of OS X was installed when the machine originally purchased. If it had Snow Leopard on it you have an illegal verison of OS X, as the license for Lion and ML upgrades are not trasferable, they're also  pretty useless to you because they're tied to the old owner's AppleID. If you are not sure or cannot find out then call AppleCare.
    However if the machine originally shipped with Lion on it, the simply restart in the Restore Partion, do and erase and install and you're set. You can start in the Restore Partition by holding down the Command + R keys when you hear the startup tone and then choosing the Restore Partition and open Disk Utility.

  • Need to do a Factory Reset for iMac late 2011. How do I do it with little hassle

    I recently purchased a iMac (late 2011) from ebay and it did not come with a Disc. I keep seeing that it will require a disk. The Current operating system is 10.7.5
    Im eligible to download Moutain Lion from the Apple Apps store but  I dont know when to do it? Before or After the Factory Reset
    What do you I need before I get Started? Will it just erase everything and start brand new? (what im looking for)
    It seems to be running slow and Im really really new to MAC operating systems so if  someone could please walk me thru this it would be greatly appreciated.
    Thank You !!!

    Did the selller tell you what version of OS X was installed when the machine originally purchased. If it had Snow Leopard on it you have an illegal verison of OS X, as the license for Lion and ML upgrades are not trasferable, they're also  pretty useless to you because they're tied to the old owner's AppleID. If you are not sure or cannot find out then call AppleCare.
    However if the machine originally shipped with Lion on it, the simply restart in the Restore Partion, do and erase and install and you're set. You can start in the Restore Partition by holding down the Command + R keys when you hear the startup tone and then choosing the Restore Partition and open Disk Utility.

Maybe you are looking for

  • How to get the selected rows & columns in the table?

    hi everybody,                      In my application the table is kept inside the event structure.I select the cells  in the table (using mouse) on running time.How to get the selected number of rows & columns in that table?

  • ALV Excel Output - Formatting of Columns

    Hi guys, I have a requirement to format the date column output from an alv grid to a spreadsheet. The date in the alv is 01.01.2007 and they want this to appear as 01/01/2007 in the spreadsheet. I noticed in SE16N that this functionality exists, as t

  • I'm getting a "paper jam" warning in a HP 4500 wireless. There is no jam.

    Officejet 4500 wireless....windowsXP-home...."paper jam" There is no paper jam!

  • Part of iMac Screen is Fuzzy

    Hi, I recently bought an iMac (24" display), and I noticed that one small portion in the lower right hand corner of the display is hazy, much more so than the rest of the display, which is fine. Anything I place in the area is fuzzy, so its not relat

  • Creating Variable to display calweek for selection....

    Hi Experts, Can anyone tell me how to create a variable which will take my date input as calweek. The selection screen of the report should only view weekly report, by giving us an option of selecting any week. please help. Thanks