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!

Similar Messages

  • 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.

  • Power supply error, Cisco switch 3750

    Hello,
    Can someone help me with a  power supply problem...?
    Switch cisco WS-C3750-24P is showing "Unavail" from sh env all
    Switch3750#sh env all
    FAN is OK
    TEMPERATURE is OK
    SW  PID                 Serial#     Status           Sys Pwr  PoE Pwr  Watts
    1  Built-in                                         Unavail
    2  Built-in                                         Good
    3  Built-in                                         Good
    4  Built-in                                         Good
    Does it means that power supply 1 was removed? failed?
    Do you know about another command to see more details?
    Thanks,

    Hi All,
    Can you please help to fix the issue,
    sw03#sh env all
    FAN is OK
    TEMPERATURE is OK
    Temperature Value: 45 Degree Celsius
    Temperature State: GREEN
    Yellow Threshold : 58 Degree Celsius
    Red Threshold    : 68 Degree Celsius
    SW  PID                 Serial#     Status           Sys Pwr  PoE Pwr  Watts
    1  Built-in                                         Unavail
    SW  Status          RPS Name          RPS Serial#  RPS Port#
    1   Active          <>
    sw03#sh env st
    SWITCH: 1
    FAN is OK
    TEMPERATURE is OK
    Temperature Value: 45 Degree Celsius
    Temperature State: GREEN
    Yellow Threshold : 58 Degree Celsius
    Red Threshold    : 68 Degree Celsius
    POWER is FAULTY
    RPS is SUPPLYING
    As per the sh env stack, seem like power is faulty ?. Can Someone please tell how to rectify the problem.
    Madan

  • ILO 4 scripting to get Power Supply Status

    Hi all,
    Been using the iLO xml scripting tools via cpqlocfg.exe and hponcfg.exe to retrieve status information from a server running iLO 4.
    If I use the web interface, I can get information about the power supplies and their redundancy status as shown below - but I can't seem to get this information using the scripting system. Does anyone know how to do it??
    Thanks,
    Daz
    This question was solved.
    View Solution.

    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!

  • Always getting errors when trying to control YOKOGAWA 7651 power supply on Labwindows/CVI

    Hi,
    I'm trying to set the voltage on the YOKOGAWA 7651 power supply through labwindows/cvi. I've set up a numeric slide on my userinterface with callback function "yoko7651dcvolts" and constant name "YOKO7651DCVOLTS".
    I always get this error when I run my program:
    "FATAL RUN-TIME ERROR: "DcSource.c", line 53, col 65, thread id 0x00001F3C: Invalid argument type: found 'pointer to double', expected 'pointer to int'."
    This error points to the third argument of the GetCtrlVal function below. The program/compiler wants me pass the variable "yoko1volts" as integer, but I want to (and should) be able to set voltages as floating numbers.
    Plus, even when I declare "yoko1volts" as integer, it stills doesn't work. All I get is zero, zero, and zero...on the power supply meter everytime I press the numeric slide.
    This is the section of the C code that is problemic:
    int CVICALLBACK yoko7651dcvolts (int panel, int control, int event,
    void *callbackData, int eventData1, int eventData2)
    double yoko1volts;
    switch (event)
    case EVENT_COMMIT:
    GetCtrlVal (yoko76511Panel, YOKO7651_1_YOKO7651DCVOLTS, &yoko1volts); // to read the values entered on the numerical meter on the user interface
    yk7651_set_volts (yoko76511Panel, yoko1volts); // set the entered values as voltage on the instrument
    break;
    return 0;
    This is the related h-file:
    #define YOKO7651_1 4
    #define YOKO7651_1_YOKO7651SWITCH 2 /* control type: binary, callback function: yoko7651switch */
    #define YOKO7651_1_YOKO7651DCVOLTS 3 /* control type: scale, callback function: yoko7651dcvolts */
    Please help, how can I fix this issue?
    All the drivers (including the YOKOGAWA 7651 power supply) are properly installed and mounted. As a matter of fact, I can successfully turn the power supply on and off with the code below:
    int CVICALLBACK yoko7651switch (int panel, int control, int event,
    void *callbackData, int eventData1, int eventData2)
    int yoko7651switchstate;
    switch (event)
    case EVENT_COMMIT:
    GetCtrlVal (yoko76511Panel, YOKO7651_1_YOKO7651SWITCH, &yoko7651switchstate);
    SetCtrlVal (yoko76511Panel, YOKO7651_1_YOKO7651SWITCH, !yoko7651switchstate);
    yk7651_output (yoko76511Panel, !yoko7651switchstate);
    break;
    return 0;
    It's just setting the voltage on the power supply that is very problematic. Any help is appreciated...Thanks.
    Solved!
    Go to Solution.

    I second Al opinion of a disconnection between the UIR and the variable that holds the panel handle.
    As a side note, I noted that the problematic line is reading the value of the controll whose callback is executed:
    #define YOKO7651_1_YOKO7651DCVOLTS 3 /* control type: scale, callback function: yoko7651dcvolts */
    int CVICALLBACK yoko7651dcvolts (int panel, int control, int event,
    void *callbackData, int eventData1, int eventData2)
    double yoko1volts;
    switch (event)
    case EVENT_COMMIT:
    GetCtrlVal (yoko76511Panel, YOKO7651_1_YOKO7651DCVOLTS, &yoko1volts); // to read the values entered on the numerical meter on the user interface
    yk7651_set_volts (yoko76511Panel, yoko1volts); // set the entered values as voltage on the instrument
    break;
    return 0;
    In a situation like this, I would try using GetCtrlVal (panel, control, &yoko1volts); instead, that should get rid of all problems in panel handle / control ID.
    Despite this solution is working, in any case I would deep into the problem as an incorrect panel handle can lead to erratical behaviour in other places of the program.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • C3750X - Power supply OIDs problems

    Hello,
    We are trying to monitor two stacks of CISCO WS-c3750X running IOS 12.2.(58)SE.
    We can get the state of the power supplies, but after a power cycle or reboot of the switches the identifier of ONE of the Power supplies ALWAYS change. The OIDs for the rest of the PS do not vary. The problem happens in the two stacks.
    Any idea or work around?
    Kind regards
    Mark                  

    Hi,
    I'm trying to determine if the issue addressed in this post is a match with the following symptom:
    As you can see from the output below - the switch 2 power supplies appear to be healthy:
    SWITCH#show env power switch 1
    SW  PID                 Serial#     Status           Sys Pwr  PoE Pwr  Watts
    1A  C3KX-PWR-350WAC     AZS161707F3  OK              Good     Good     350/0
    1B  C3KX-PWR-715WAC     LIT16180RRU  OK              Good     Good     715/0
    SWITCH#show env power switch 2
    SW  PID                 Serial#     Status           Sys Pwr  PoE Pwr  Watts
    2A  C3KX-PWR-715WAC     LIT16180RRY  OK              Good     Good     715/0
    2B  C3KX-PWR-350WAC     AZS161707FZ  OK              Good     Good     350/0
    Yet, the snmpwalk output shows a Sw2 PS2 power supply fault:
                  snmpwalk -v1 X.X.X.X  -c READONLY .1.3.6.1.4.1.9.9.13.1.5.1
    SNMPv2-SMI::enterprises.9.9.13.1.5.1.2.1035 = STRING: "Sw1, PS1 Normal, RPS NotExist"
    SNMPv2-SMI::enterprises.9.9.13.1.5.1.2.1036 = STRING: "Sw1, PS2 Normal, RPS NotExist"
    SNMPv2-SMI::enterprises.9.9.13.1.5.1.2.2034 = STRING: "Sw2, PS1 Normal, RPS NotExist"
    SNMPv2-SMI::enterprises.9.9.13.1.5.1.2.2035 = STRING: "Sw2, PS2 Faulty, RPS NotExist"
    Do my symptoms match with the issue addressed in this post ?
    TIA,
    Amir

  • Error NEXUS 5000 power supply - %NOHMS-2-NOHMS_ENV_ERROR

    hi all,
    i get, after i allready changed the power supply, the same error message again.
    2010 Mar 24 20:03:53.271 L4DE8NSY523 %NOHMS-2-NOHMS_ENV_ERROR: Module 1 temperature sensor PS-1 failed.
    2010 Mar 24 20:04:23.333 L4DE8NSY523 %NOHMS-2-NOHMS_ENV_ERROR: Recovered: Module 1 temperature sensor PS-1 failed.
    2010 Mar 24 21:38:27.285 L4DE8NSY523 %NOHMS-2-NOHMS_DIAG_ERR_PS_FAIL: System minor alarm on power supply 1: failed
    2010 Mar 24 21:38:57.299 L4DE8NSY523 %NOHMS-2-NOHMS_DIAG_ERR_PS_RECOVERED: Recovered: System minor alarm on power sup
    ply 1: failed
    i do not find the error explanation in the error message decoder. now i guess that not the power supply is defect but the NEXUS 5010 itself. am i right ? please advise !
    Cisco Nexus Operating System (NX-OS) Software
    kickstart: version 4.1(3)N1(1)
    system:    version 4.1(3)N1(1)
    regards Reinhold.

    also see http://www.cisco.com/c/en/us/td/docs/switches/datacenter/nexus5000/sw/release/notes/Rel_4_0_1a_N1_1a/Nexus5000_Release_Notes_4_0_1a_N1_1a.html 
    for open caveat: CSCtb56755
    it is also a cosmetic issue. 

  • Power supply dead? Can I get at the Hard drive?

    I recently had a storm which blew one of my external firewire drives (it goes on but won't mount) and when I tried using my older G4 (Quicksilver, with OS10.3.9, and Classic) to boot up in OS9 and try my Norton Utilities, the G4 froze. It did it several times. I eventually pulled the power cord. When I plugged it back it, there was a spark (at the plug in point on the G4, not the wall outlet. Since then, it won't power up.
    I tried booting it up in firewire disk mode and using my Intel MacPro, but no dice.
    I did a search and have seen discussion on what sounds like my same problem. I hold the power button and the light goes on, but goes right off as soon as I let go.
    I tried pressing the PMU; I saw a lot of discussion about the CUDA button but it seems these are one and the same thing. I removed the small battery and tried to get a replacement but have not succeeded as yet. Though I don't think that's the problem. It might be the power supply.
    Anyway, here's my question: can I use the power supply and/or battery from an even older Mac, a PPC 8600?
    And, whether or not that works, can I yank the hard drive from my G4, along with a second internal drive I put in (slave) in order to get data of it? (I'll give up trying to fix the G$ itself if I can just get my files off it.
    *While I'm at it, can I take apart the external firewire drive that won't mount, and get at the files on that in some way. I tried Data Rescue ll but the drive still would not mount so that was useless.
    Any help on any of these will be greatly appreciated. (Yes, I do have a nice big powerful UPS but the G4 and the external were no plugged in to it).
    Thanks
    noodle--head grrum...PY

    Hi-
    To recover your hard drives and data (including the external) get yourself a housing, and insert a drive, and move data to a different computer.
    You'll want a firewire external housing with the Oxford chipset. I can recommend any of the FW or FW combo housings by OWC on the following page:
    http://eshop.macsales.com/shop/firewire/add-ons-and-hubs/enclosure-kits
    You will need a QS power supply-others won't work.
    If you end up wanting a power supply for the QS, check eBay, or the following:
    http://www.mac-resource.com/store.php?item=6612513.PART
    http://hardcoremac.stores.yahoo.net/pog4quposu34.html
    As for the battery, as long as it is the same 3.6v and form factor, any will do:
    http://eshop.macsales.com/item/Newer%20Technology/BAA36VPRAM/
    The Radio Shack P/N is 23-026.
    G4AGP(450)Sawtooth, 2ghz PowerLogix, 2gbRAM, 300gbSATA+160gbATA, ATI Radeon 9800   Mac OS X (10.4.8)   Pioneer DVR-109, ExtHD 160gb x2, 23"Cinema Display, Ratoc USB2.0, Nikon Coolscan

  • How big of a power supply should I get? / ram question

    Here's what I have
    K7T266 Pro2-RU motherboard
    Radeon 9800 pro
    2 40gb hd's raided
    1 20gb hd
    cd burner
    dvd drive
    Audiophile sound card (forgot the model #)
    and i'll soon have either 512 or 1024 of kingston hyper x pc2700 ram
    right now my power supply is 300w and i'm pretty sure that's not good enough.
    when i install the new ram, i'm also gonna install a new power supply.  how many w should it be, and any recommendations on brands to get?

    When I look for any part I always try to find the best deal, price/performance.
    Are you in the UK?
    I have the JSP sprite PSU 550W and I would recommend it to anyone.
    Its a 550w PSU, the make is JSP.
    http://www.jsp-tech.com/_english/2_products/2_detail.php?hMainTypeID=2&hSubTypeID=18&hProdID=50&PHPSESSID=e4f8f8d95cf38d9bd897cc82fb12a7ae
    It cost me £26 on a special deal from http://www.aria.co.uk
    Now look carefully at this PSU and tell me, does it look like the Levicom one.
    http://www.aria.co.uk/ProductInfoComm.asp?ID=9628
    http://www.aria.co.uk/ProductInfoComm.asp?ID=8823
    they look the same, now have a look on levicom's website,
    http://www.shopweezle-hosting.de/shop_levicom/login.php?caller=xlink&url=detail.php&sess=b4c1e20279ad56ad193ed0d344f76cd7&art_id=16&oldcaller=nav&startlimit=0&abt=8&itemgr=16
    and finally pictures of my psu
    http://www.holisticaroma.com/jsp.JPG
    http://www.holisticaroma.com/jsp2.JPG

  • My power supply has gone out on my Imac g5 desktop, if i get a new desktop can i download my hard drive to the new computer

    My Power supply has gone out, if I get a new desktop can I download the hard drive of the old to the new without the power supply

    If you call around, you might be able to find an apple authorized repair shop in your area that can offer to put pull the hard dive out of the old computer and put it into an external hard drive.

  • Where can I get an EU power supply for my late 2009 mac mini

    I have a late 2009 mac mini.  The power supply is good for US voltage only.  The new mac mini specs say they can accept 110 - 220 VAC, 50-60 Hz.  Will one of these new power supplies work with my older mini?  Where can I get one, can't seem to locate on the Apple online store.  Moving to France and don't want to leave my mac behind!
    Thanks,
    JSP

    you could get something like this: http://www.amazon.com/Energizer-XP18000-Universal-External-Netbooks/dp/B002K8M9H C
    it's about the same cost as an extra battery used to be. there's a range of similiar products at Amazon, i'd check reviews.

  • 45w power supply getting hot

    When I plug my 45w power supply into the extended cable it brick gets incredibly hot. When I plug it directly into the wall with the 2 prong plug it does not get as hot.
    Any suggestions as to what is going on?

    It will also depends on WHEN you are checking the brick.  If you check the brick after say, you have been watching Netflix movies FULL screen for the last 2 hours, it will likely be more hot than it would if you were just surfing around the internet.  Also, it would be warmer if it was currently charging the battery as opposed to JUST powering the computer.  It shouldnt matter if it is the long cable or the direct plug.  Last, define HOT?  What you consider HOT may not be hot at all to me.  It is a completely subjective thing.  Obviously if it is so hot that you cannot touch it, that is a different story.

  • Power supply get very hot!

    I just bought a Pavilion dv6-6c35dx laptop and have noticed that the power supply gets really really hot, to the point that it scares me and I disconnect the laptop. Does anyone has the same problem?

    Same problem here on my dv6-6c35dx.
    I didn't know about the power cord recall, and I bought a new ac adapter, power cord and replaced the battery. No change, the adapter gets really hot, too hot using the 2 second rule! Experienced chefs use it to determine if a grill is hot enough by touching it for no more than 2 seconds.
    I'm now putting it on a ceramic plate to make sure it doesn't smoke something when its charging. I hope HP knows this is a problem. Maybe the battery charging rate can be slowed and this may help.

  • PMG4 MDD Power Supply dead? Where can I get one?

    Does anyone know of another source for the PMG4 MDD Power Supply? When I press the power button to turn it on, nothing happens. Yes, I have reset the PMU, replaced the battery, left it unplugged overnight, and still nothing at all, no lights noises or anything.
    I think it's the power supply, and my Apple Authorized Service Center says they haven't been able to get a power supply for over a month now.
    Is there a shortage of the Samsung Power Supplies for this?
    Thanks,
    Jay

    Thanks for the help. After calling my Apple Authorized Service Center asking what the ETA was, they told me to call 1-800-MYAPPLE and ask about the status of the Power Supply they ordered on April 24th. I called Apple yesterday, and today I got a call that the Power Supply was being shipped out today.
    Not sure where the bottleneck was (Apple, AASS, etc.) but it took over a month for one to get shipped out, when the MDD G4 that blew a PS last month had one replaced in 2 days.
    I am speculating that these Power Supplies have been failing at an abnormally high rate lately, and are out of production. Of course, that is just a guess.
    Hopefully someone out there benefits from my info here.
    Thanks,
    Jay

  • Power Supply Help for 466mhz G4 - where can i get a good deal.

    I need to find a replacement for the power supply in the machine. It is an original 466mhz g4, agp graphics. The power supply says 126w max and had AC BEL on it.
    Can anyone help me out in finding a cheap place to get a power supply that fits this machine perfectly? Looking for a reputable dealer (obviously).
    Thanx in advance.

    Hi Nelson,
    You're machine is a Digital Audio (the only G4 to have shipped with 466MHz processors), and the PSU is 338W - which should be adequate for most things. Why do you need a new power supply?
    If you need a new one, it won't be cheap. You can try this place:
    http://www.dvwarehouse.com/G4-Power-Supply-c-238_476.html
    Hope this helps,
    -Travis

Maybe you are looking for

  • 1.8 Dual G5 will not turn on

    Hi all I was using my G5 and absentmindedly turned it off at the power switch rather than the Apple menu. Now when I turn it on, I just get the indicator light on and nothing happens when I press the power switch. I've disconnected everything. I have

  • What is trex?

    Hi all, Can ayone plz tell me what trex is?? I searched many of the queries posted regarding this..But stil cant understand  it properly, bt i know tat its a search engine like google.. My questions are like this... Is TREX  a software to be installe

  • Leaving Disc in Drive

    Is it advisable / beneficial / or even possible to leave a disc in the drive at all times? I'd like to leave a CDRW in there for convenience sake.

  • Safari 4.0.3 On OS 10.5.8 ??? Does not working

    I update the OS to 10.5.8 and then I update the Safari (4.0.3) and mow I can't start the safari. What can I do to fix it???

  • Having two site on iweb?

    Is it possible to run and publish two sites on one iweb account? I have a laptop and a tower both with iweb and have two different sites on both computers. I was wondering if I can merge the two sites on to one computer with out disrupting either iwe