Power Controller reports power Imax error detected

Hi,
My 3560 switch w/ IOS 12.2(35)SE have below message last night. Would anyone know what happen?
Sep 23 18:54:58.468 UTC: %ILPOWER-7-DETECT: Interface Fa0/10: Power Device dete
ted: IEEE PD
Sep 23 18:54:58.468 UTC: %ILPOWER-5-INVALID_IEEE_CLASS: Interface Fa0/10: has d
tected invalid IEEE class: 7 device. Power denied
Sep 23 18:57:37.542 UTC: %ILPOWER-3-CONTROLLER_PORT_ERR: Controller port error,
Interface Fa0/12: Power Controller reports power Imax error detected
Sep 23 18:57:44.580 UTC: %SWITCH_QOS_TB-5-TRUST_DEVICE_LOST: cisco-phone no lon
er detected on port Fa0/12, port set to untrusted.
Sep 23 18:57:48.674 UTC: %ILPOWER-7-DETECT: Interface Fa0/12: Power Device deteted: Cisco PD
Sep 23 18:57:48.741 UTC: %ILPOWER-3-CONTROLLER_PORT_ERR: Controller port error, Interface Fa0/12: Power Controller reports power Tstart error detected
Thanks and Regards
Ernest

Hi Leo
Thank you for your quick response but as I said before that Nortel IP phnoe has a designed fault in power module so it meant to fail and cisco switch generate syslog for this Power Controller reports power Imax error detected. Once we replace with new phone, the error disappear and works all fine.
Now the solution I am looking for this issue as follows:
While the faulty IP phone still pluged in and keep booting, the switch generate error log and our syslog server keep sending out email alert until one of our engineer log into switch and shut the port. Very often if this happen in weekend or at night then we get hundreds of email.
Therfore I think it would be nice if Cisco 3750 put this swithport into errdisable state but it's not happening.
This is the output of errdisable;
#sh errdisable detect
ErrDisable Reason            Detection    Mode
arp-inspection               Enabled      port
bpduguard                    Enabled      port
channel-misconfig (STP)      Enabled      port
community-limit              Enabled      port
dhcp-rate-limit              Enabled      port
dtp-flap                     Enabled      port
gbic-invalid                 Enabled      port
inline-power                 Enabled      port
invalid-policy               Enabled      port
l2ptguard                    Enabled      port
link-flap                    Enabled      port
loopback                     Enabled      port
lsgroup                      Enabled      port
mac-limit                    Enabled      port
pagp-flap                    Enabled      port
port-mode-failure            Enabled      port
pppoe-ia-rate-limit          Enabled      port
psecure-violation            Enabled      port/vlan
security-violation           Enabled      port
sfp-config-mismatch          Enabled      port
small-frame                  Enabled      port
storm-control                Enabled      port
udld                         Enabled      port
vmps                         Enabled      port
===========================================
Another thing that this command "power inline port 2x-mode" is not available in our IOS, I am not sure how this command will help.
Look forward for someone response.
Thank you all.

Similar Messages

  • C3750X get power supply errors

    Hi, I got a problem with some phones connected to a C3750X-48PS. Phones are Polycom SoundPoint 560. Ports most critical: gig 1/0/9 & 1/0/31.
    Actually, the C3750X belongs to a stack, with the IOS: 12.2(55)SE3.  The environment conditions: power supply working ok, temperature level: ok. (show env all). Physically the LEDs are in green, and the room does not have temperature issues.
    Also, the phones present a humming noise (high pitch). The noise keeps happening even if the phones are plugged in other ports of a stack. It was attempted to connect the phones directly to the stack ports instead of the ports in the cubicules, and the issue keeps happening.
    The Stack presents also sudden fan to spin up / spin down for a couple of minutes, and within a couple of minutes from working on and off.
    Customer has another facility with the same switches but with IOS12.2(55)SE1, in there the same phones were tested and they are working fine.
    A reboot was performed, but now the C3750X show these messages:
    %ILPOWER-3-CONTROLLER_PORT_ERR: Controller port error, Interface Gi1/0/9: Power Controller reports power Tstart error detected
    %ILPOWER-3-CONTROLLER_PORT_ERR: Controller port error, Interface Gi1/0/31: Power Controller reports power Tstart error detected
    Thanks!

    I've found it!  In case anyone is wondering, a lot of server information is available by querying with the iLO xml tag "GET_EMBEDDED_HEALTH".
    This returns, buried way down in the results, information about power supplies (section POWER_SUPPLIES).
    While there doesn't seem to ask for just information on the power supplies, this works!

  • Can't get IVI Power Meter error query to work properly.

    I have been trying to use the IviPwrMeter Error-Query.vi to read possible errors coming from the Power Meter.  However, I have found that no errors can be detected using this vi.  This is because the returned value 'status' is wired over to the 'error code' input of 'IviPwrMeter Error Converter.vi' and the status value will always be equal to VI_SUCCESS as the attached code signifies.
    All of this code was generated by either LabWindows/CVI and/or LabView.
    If I wire the error code output of 'IviPwrMeter_error_query' function to the error code input of 'IviPwrMeter IVI error converter.vi', the errors on the Power Meter is at least detected.
    Am I doing something wrong here or are there other work arounds?
    Source listing of driver call:
    ViStatus _VI_FUNC age4418b_error_query (ViSession vi, ViInt32 *errCode,
                                            ViChar errMessage[])
        ViStatus    error = VI_SUCCESS;
        checkErr( Ivi_LockSession (vi, VI_NULL));
        if (errCode == VI_NULL)
            viCheckParm( IVI_ERROR_INVALID_PARAMETER, 2, "Null address for Error Code");
        if (errMessage == VI_NULL)
            viCheckParm( IVI_ERROR_INVALID_PARAMETER, 3, "Null address for Error Message");
     if (!Ivi_Simulating(vi))                /* call only when locked */
         ViSession   io = Ivi_IOSession(vi); /* call only when locked */
         checkErr( Ivi_SetNeedToCheckStatus (vi, VI_TRUE));
         viCheckErr( viPrintf(io, "YST:ERR?"));
      viCheckErr( viScanf (io, "%ld,\"%256[^\"]", errCode, errMessage));
     else
             /* Simulate Error Query */
         *errCode = 0;
         strcpy (errMessage, "No error.");
    Error:
        Ivi_UnlockSession(vi, VI_NULL);
        return error;

    Dennis,
    I get the same results as you if I don't have a power meter connected.  However, this doesn't supprise me because the session handle is probably checked at a higher level.
    The calling hiearchy is as follows (I think, because I don't have all of the code)  IviPwrMeter Error Query.vi -> IviPwrMeter_error_query (IviPwrMeter.dll) ->age4418b_error_query (age4418b.dll).  I would guess that the session is validated in the second layer and not the bottom layer where the actual instrument error query is happening.
    Something you may try.  If you have any instrument, write a simple program to get a valid handle then call the error query using the error cluster to link them together.  Set a breakpoint before the error query, run the program, use MAX to send an invalid command and create an error.  Then resume your original program and see if an error is reported in the error cluster after executing the IVI error query.
    Bob

  • Burning Problem - Power calibration error

    hi...
    i use dvd studio pro 3.02 and now when i try burning the DVD my laptop the error message appears.
    "The recording device reported the media error: Power calibration area error. (0x73, 0x03.)"
    i doubt it but is there anyway i can fix that?

    Hi
    You have two things to check:
    - Try a different media. Check this site about * about quality media *.
    - Try creating a disc image in your hard drive and burning it with Disk Utility and/or Toast. Check thsi tutorial: * Creating Disc Image in DVDSP *
    Hope that helps !
      Alberto

  • Power calibration error

    Our Mac Mini Superdrive has stopped burning to discs. It ends the proceedure and reports the following Error message: The device failed to calibrate the laser power level for this media.
    We can't figure out why this is happening. It happens when burning to any disc, from any software. We haven't changed the discs we use and they used to work fine.
    The other interesting anomally is that when I try to get the machine to run a hardware check on start up using the Mac OSX Disc 1, it won't reveal the menu so that I can check to see if the superdrive is working correctly. Instead after about 5mins it goes into safe mode.

    Does this page contain anything useful?
    (14616)

  • Satellite A200-1M8 PAE6E: CD/DVD drive issue - power calibration error

    Hi,
    I have an Satellite A200-1M8 ( or A200 PAE6E ) with Vista and for some time I've been trying to burn some dvds which I failed due to power calibration error.
    I tested my DVD-ROM and it works normally, the problem is it does not read (recognise) every dvd.
    Is there anyone who can help me out about this?
    Or how can I learn which type of media my DVD-ROM would read?
    Thanks in advance.

    Hi
    I think I have founded an interesting article for you:
    [Is there a list of supported type of CD-R/-RW or DVD-R/+R/-RW/+RW/-RAM discs which should be used?|http://forums.computers.toshiba-europe.com/forums/ann.jspa?annID=36]
    But generally a power calibration error means that its the media is faulty or not compatible with the drive.

  • Qosmio G20: Can not burn CD's but only DVD's - power calibration error

    Hi
    I'm having some trouble and i think it's very strange.
    I can't record audio or data cd's!
    i've used sonic reducer, as nero, as windows media player..tried 3 different brands of cd'r and i can't burn audio or data files in any of those..BUT...on the other hand i can burn DVD'S...this is very strange right?
    Ps: when i record with nero i keep having this message on the relatory of the burning process : "power calibration error" but only i when i try to burn cd´s.. dvd's recording doesn't have this problem
    do i need to update some drivers?
    please any help would be super or i will have to make a big trip to solve the problem on the laptop shop.
    regards

    "Power calibration" - When burning a CD the drive tries to write a test signal to the disk to set the calibration of the laser. If it cannot write a readable signal, this is called a "power calibration error". The error message usually means that there is something wrong with the media.
    Please try to use few different empty CDs (Verbatim, TDK, Maxell and others).
    Check also this page http://www.cd-burner-help.com/power-calibration.htm
    Maybe helps.
    Good luck!!!

  • M30-842: Power Calibration error while burning DVD-RW

    I have faced a problem with my M30-842. Several times I have tried to erase burned on my laptop DVD-RW and Nero would say "Burn process failed. Power calibration error". So I cannot erase or continue multisession DVD-RWs.
    Burning CDs is ok.
    Please help me with the problem, how can I solve it? SOS!
    Semen

    Hi Semen
    Can you please try to use roxio software built into Windows XP? There is also the same option. It will be interesting to know if this problem is caused by software that you use or if there is some malfunction of your device.

  • Power calibration error when burning?

    I get a power calibration error when burning from IDVD.
    Any suggestions as to how to fix it?

    Basically a power calibration is the drive writes to the blank and then tries to read it back and adjusts the laser power accordingly to get a proper burn. So there are a number of reasons you might get this problem.
    One is the media itself. A bad disc or poor quality media might give you this error.
    Next, you may have a dirty laser and running on of those cleaning CDs (they have little brushes on them to dust off the laser) might do the trick.
    Third, could be a laser on the drive is giving up the ghost. Hopefully it is not the last one.
    Patrick

  • Crystal Report Export To Excel Error: "Error detected by Export DDL"

    I have a windows application in .Net 2003, whenever i export the crystal report on my development machine or other windows xp machines it runs smoothly, but when i deploy the application on client's machine having windows vista installed, it displays error of "Error in file........., Error detected by export DLL"
    pls help me.

    First thing to look at is the wiki [What versions of Crystal Reports are supported on Windows Vista in VS .NET?|https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=64259646].
    Note that CR 9.1 is not supported on Vista. And if CR 9.1 is not supported on Vista, any earlier version of CR will also not be supported on Vista. That is not to say the app(s) will not work, they may - or not. You never know... and we have no experience with these types of installs as we don't need to have it.
    Next, have a look at KBase [1205312 - "Error detected by export DLL" while exporting to Excel after applying SP2 on Windows 2003 Server|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233303335333333313332%7D.do]. Not exactly the same OS, but I'd follow through on the suggestions in that KB anyhow.
    Finally, If this app works on a Vista box when a VB 6 app  is not installed, compare the dlls loaded between that box and the one that has both apps. Use [Modules|https://smpdl.sap-ag.de/~sapidp/012002523100006252802008E/modules.zip] to do that.
    Other than that, only suggestion I have is to upgrade to a version of CR that does support Vista.
    - Ludek

  • Cisco Power Supply error

    What does out of regulation limits means ?
    1 red "OUTPUT FAIL," normally is off but illuminates when power supply outputs are out of regulation limits
    Thanks
    Rosa

    Hi,
    Seet this:
    LED
    Meaning
    INPUT OK
    AC-input power supplies:
    •Green—Source AC voltage is OK. (Input voltage is 85 VAC or greater.)
    •Off—Source AC voltage falls below 70 VAC, is not present, or the PEM is turned off.
    DC-input power supplies:
    •Green—Source DC voltage is OK. (-40.5 VDC or greater.)
    •Off—Source DC voltage falls below -33 VDC or is not present at the PEM.
    FAN OK
    Green—Power supply fan is operating properly.
    Off—Power supply fan failure is detected.
    OUTPUT FAIL
    Red—Problem with one or more of the DC-output voltages of the power supply is detected.
    Off—DC-output voltages within acceptable margins.
    Note For proper operation of the OUTPUT FAIL LED, systems with single power supplies must be configured with a minimum of one fan tray and one supervisor engine. Systems with dual power supplies must have a minimum configuration of one fan tray, one supervisor engine, and one additional module. Failure to meet these minimum configuration requirements can cause a false power supply output fail signal.
    This is for 6500 switches but apply to almost all models.
    http://www.cisco.com/en/US/docs/switches/lan/catalyst6500/hardware/Chassis_Installation/Cat6500/0apwsply.html#wp1025570
    Hope this helps.

  • IDVD power calibration error?

    Hello everyone. For the past few days I have been trying to burn a dvd from iDVD, however, when it seems to almost finish an error message pops up. ( Error, power calibration error 0x73, 0x03). Can anybody help me?

    Hi FilmStudent:
    Welcome to discussions!
    I think that this is an issue related to the DVD media. Basically, your burner doesn't like whatever brand of discs you've just brought and so you get that weird error message.
    May I suggest Verbatim DVD-R 8x or less? (4x if you can find them).
    :)Sue

  • Medium error: Power calibration error. (0x73, 0x03.)

    Everytime I try to burn a DVD-R in iDVD v3.0.1, I always get the following;
    Power calibration error. (0x73, 0x03.)
    What does that error code mean?
    Any resolution?
    Thanks.

    Hi
    What brand of DVD ?
    I only use Verbatim (Taiyo Yuden DVDs also supposed to be first class)
    What type of DVD ?
    I use only DVD-R
    If You can - try to get an as slow burning versions x1 or x2 - x16 can be problematic
    (alternative is to make a DiskImage of Your DVD project - standard in iDVD 5 and onwards.
    In iDVD 4 You need to do a Hack and use a program named HPfurz, install it and follow instr.
    Then when You have a working DiskImage - burn this at (x1 or) x4 with Apple Disk Util tool or
    Roxio Toast™ if You got this.)
    Else
    *Not knowing the origin to Your problem - General approach when in trouble is as follows.*
    • Free space on internal (start-up) hard disk if it is less than 10Gb should rather have 25Gb
    • Hard disk is untidy. Repair Permissions, Repair Hard disk (Apple Disc Util tool)
    • Delete iDVD pref file - *or rather start a new user/account* - log into this and re-try
    iDVD pref file resides. Mac Hard Disk (start-up HD)/Users/"Your account"/Library/Preferences and is named.
    com.apple.iDVD.plist
    While iDVD is NOT RUNNING - move this file out to desk-top.
    Now restart iDVD.
    • Program miss-match. iDVD 5.0.2, Mac OS X.4.11 AND QuickTime 7.5.5 - is OK - DON’T work under Leopard
    • Program miss-match. iDVD 6.0.4, Mac OS X.4.11 AND QuickTime 7.5.5 - is OK (might work under Leopard)
    • Program miss-match. iDVD’08 v. 7.0.1, Mac OS X.4.11 AND QuickTime 7.5.5 - is OK (might work under Leopard)
    • iDVD (08) v7 Locate theme folder. Move out iDVD1, iDVD 2 and eventually iDVD4 folders to desktop - re-try
    • Try a Cleaning CD/DVD that cleans the laser lens on the DVD burner/player
    iDVD 6.0.4 and iDVD 7.0.1 are compatible with Mac OS X 10.5 Leopard
    Last resort. from Craig. Solved the problem!! Finally!!
    I deleted every iDVD application and folder from my boot drive,
    emptied the trash and then installed iDVD 08 using the customize option
    and I am up and running.
    If You do a re-install be sure to get rid of all iDVD old parts AND then EMPTY the Trash-basket !
    Yours Bengt W

  • DR4-A power calibration error??

    I bought 50 units of Maxell MXL RG01 dvd-r:s. They are on the recommended disk -document. Everytime I try to burn them with Nero 6, Process goes to 1 percent and I get error message "Power calibration error". I'm having a new Firmware(2.50) installed. Can anyone tell me what's wrong, because MSI doesn't reply my e-mails?

    Hi All
    I just wanted to post some information on the "Power Calibration Error" on the DR8-A2. There are quite a few posts on this subject and yes this error can occur if you are using incompatible media, but if you have been using the media without any problems in the past and then you suddenly start receiving this error then it's not the media at fault and also not the software you are using.  You can try a "DVD Lens" cleaner the wet or dry version and it may work but I have personally found that when you have the "Power Calibration Error" problem these cleaners will not work for the DVD writer.  They do work well for DVD players and DVD ROM drives so don't get me wrong.  The reason so many people get the "Power Calibration Error" on the DR8-A2 drive is really due to the fact that the drives dust proof mechanism is poor and the dust builds up on the lens.  Remember if you get the "Power Calibration Error" when you try a new media then it probably is the media.  Only try the fix given below on the drive if you receive this error on your normal media which you have been using in the past without any problems.  I have now had the problem 3 times and the drive is only 4 months old but have managed to get round it every time.  Although my drive was in warranty I had to break the warranty seal as I didn't have time to take the drive back for exchange.  You will need to open your drive and you will void the warranty so only do this if you are confident enough to do so and at your own risk.
    You will need the following...
    A) Screwdriver to remove your drive.
    B) Computer cotton swabs - (Others may leave cotton deposits so not recommended)
    C) Lens / Head Care Solution - (One that contains ISOPROPYL ALCOHOL)
    D) Paper clip - (Or something of a similar size to eject drive)
    I have gone into detailed instruction only for the benefit of people who have never opened up a CD/DVD drive, obviously people with the experience can skip to step 5 in the instructions.
    Instructions...
    1) Philips screwdriver to open your PC and remove your drive.
    2) Straighten the paper clip and insert it into the "Emergency Drive Eject" hole to eject the drive tray a quarter of the way out and remove the front panel from the tray by unhooking the clips underneath and then sliding up.
    3) Now remove the drives front panel by pressing down on the clips and sliding forward.
    4) Remove the 4 screws at the bottom of the drive and then turn the drive over to slide up the top panel of the drive.
    5) Here’s the delicate bit, you will really need to be very gently now, place 2 or 3 drops of the lens leaner onto the tip of the cotton bud and then very gently wipe the lens side to side. Do not push down on the lens too hard and don’t clean it using up & down strokes.  Do this 8 to 10 times.  Then get a clean cotton bud and do this once more.
    6) You can now put your drive back together in reverse order and the system should work without giving a "Power Calibration Error".
    I hope this helps, I have done this several times now on my own systems and for friends and family, it has worked for me every time.  Like I said earlier the dust mechanism is poor on these drives and in a few weeks time you will need to clean the lens again.

  • Error message - power calibration error

    We are experiencing a power calibration error message when the studetns are buring their edited projects to DVD. Can you give me any advice?

    Moost often, this is due to cheap media, or an incompatibility between the write speed of the media and your drive.
    You might try building the project to a folder on the hard drive and burning a disc of that with toast, which allows you to chooose different burn speeds.

Maybe you are looking for

  • How many airport base station can you have at one time?

    I currently have a abse and a abs dual ethernet. My set up is the cable is connected to the abse sending out g. The abs is daisy chain and sending out b. My c2d machine is communicating with the abse using g and my old G4 is communicating with the ab

  • Is it possible to allow use to type entry into a drop down list box ?

    Hi , Is it possible to provide  type in the value option ( provide option to user like he can select a value from the extracted data in a drop down list object and also he can enter a value manually ) to a drop down list box on an interactive form ?

  • Timestamp phpmyadmin in dreamweaver

    Working with phpMyAdmin, I've got a table called news with a field called time and type timestamp (standard value: current_timestamp; on update current_timestamp) Now using dreamweaver, I insert the following code to show the time field on a page: <?

  • HOW TO START MAKING DATABASE USING ORACLE SQL PLUS in 10g?

    how will i create database using sql plus? does the code of sql applicable to it..? do i have to use the "create db <database name>", use and " create table also,.." pls help me.. thanks

  • I downloaded AutoCAD 2013 for mac and then the macbook started to glitch! WHY????

    Hello, I downloaded AutoCAD 2013 for mac and after 20 minutes work in the Autocad my macbook pro with Retina display 13 inch (OSX 10.9.1)  started to glitch. Then I deleted  this program from mac, but it is still glitching. When I am moving windows,