URGENT: Can (no) Fan tray in a 6509 cause power problems?

All,
I'm about to install a 6509-E with two 10/100/1000 Blades and two SUP2's (running cat6000-sup2k9.8-1-3.bin)
They're all brand new. With the Enhanced chassis they ordered the wrong fan tray and as I write a courier is bringing over the correct Fan Tray within 2 hours. The config must be up and running by tomorrow morning and as my schedule is very tight I wonder if I still can make it. Besides that I want to check if all blades are responding well.
Problem is that the line cards are not booting in any case, the supervisors does! Do not worry about the heat; a powerful airco is blowing enough cooling through the chassis and the system is powered off after a few minutes.
The errors spitted out after boot and when entered when powered on:
**** elbid_get_common_idprom_size error
**** elbid_get_common_idprom_size error
**** elbid_get_common_idprom_size error
**** elbid_get_common_idprom_size error
failed to read serial eeprom of linecard in slot X.
%SYS-1-MOD_PWRSPROMFAIL:Power mgmt sprom failure for module X
Console> (enable) sh mod
Mod Slot Ports Module-Type Model Sub Status
1 1 2 1000BaseX Supervisor WS-X6K-SUP2-2GE yes ok
3 3 Unknown Card power-bad
4 4 Unknown Card power-bad
Is that typical when booting with no fan tray? Or are the two line cards DOA?
On the CCO you find:
SYS-1-MOD_PWRSPROMFAIL: Power mgmt sprom failure for module [dec]
Explanation: This message indicates that a serial EPROM read on a module has failed; [dec] is the module number. The module is powered off.
Recommended Action: Contact your technical support representative
That really helped me a lot!! Doh!
So my only hope is the Cisco Forum, meaning YOU guys!
I hope someone provide me an answer within 2 hours because if they will be DOA I can blow off the migration.
Thanks in advance!
L.

Hi :
It appears that the card is not supported in the code you are running. Could you quickly tell me the part # of the card. I am suspecting you have the new WS-X6148A-GE-TX ( notice the A ) , that card is supported in 8.4(1).
Check the release notes.
http://www.cisco.com/univercd/cc/td/doc/product/lan/cat6000/relnotes/ol_4498.htm
The message says that the system is unable to read the idprom on the line cards and the reason for that would most likley be the lack of support in that code for that line card. Fan tray being hot swappable suggests that the cards should atleast be detected even when the fan tray is not there.
Hope this helps .
Salman Z.

Similar Messages

  • My latest pano photo have missing landscape. Some of the photos are merged into one. I can provide the examples. What could cause this problem on a new 5C?

    My latest pano photo have missing landscape. Some of the photos are merged into one. I can provide the examples. What could cause this problem on a new 5C?

    Thanks for the input. I was finally able to find some test conditions that duplicated the problem, and it is either that or some other out-of-spec diffraction distortion.  So I sent it off for repair.

  • I have duplicate pictures in "my catalog" that I believe come from two Adobe folders found under "my pictures/adobe/ one is Revel and the other is Photoshop express which preceded revel. Can I delete those two folder without causing a problem with my cata

    I have duplicate pictures in "my catalog" that I believe come from two Adobe folders found under "my pictures/adobe/ one is Revel and the other is Photoshop express which preceded revel. Can I delete those two folder without causing a problem with my catalog?

    Thanks for the links, Limnos.
    If you are willing to continue helping, here's what I found.
    Just to clarify the two iTunes folders I am refering to are:
    username-->Music-->iTunes
    HD-->iTunes
    I am presuming each location has a full set of files as outlined in the above links?
    Not all the files are in both locations. Most are.
    - The Itunes folder in my home folder does not have itunes library.xml.
    - The Itunes folder in my home folder has a subfolder called Mobile Applications (username-->Music-->iTunes--> Mobile application). The Itunes folder at the HD level also has a Mobile Application folder but it is a subfolder of Itunes Media folder (HD-->iTunes--> iTunes Media-->Mobile applications) and has no files in it.
    - I do not have an iTunes Media in the iTunes folder in my home folder.
    - also the Itunes media folder (HD-->iTunes--> iTunes Media) has subfolders by type (books, movies, itunes u, music etc...) but the iTunes Media-->Music also has some of the same subfolders ( iTunes Media-->Music-->books, iTunes Media-->Music-->Movies, iTunes Media-->Music-->iTunes U). Is this normal repetition?
    You say:
    /itunes/itunes media/ music
    but it is important to note what comes before all that.
    There is nothing as far as I can tell before that first forward slash. Since the only iTunes Media folder I have is in the iTunes folder that resides at the HD level (HD-->iTunes--> iTunes Media folder) not the iTunes folder in my home folder (username-->Music-->iTunes) , I assume that's the one that holds the music.
    Keep iTunes media folder organized and Copy files to iTunes Media folder when adding to library are both checked on
    Does that give more clarity into my problem?

  • Don't know if this went through the first time. Cannon printer would not print black. bought a new Epson-800. Same problem. Can it be something in my Mac causing the problem. It's only the black that is not working.

    Don't know if this went through the first time. Cannon printer would not print black. bought a new Epson-800. Same problem. Can it be something in my Mac causing the problem. It's only the black that is not working.

    Bill ...
    Believe it or not, might be a font issue > Computer won't print black text in...: Apple Support Communities

  • Can switching from CRT to LCD monitors cause system problems?

    My 9.1 locks up periodically (but the cursor still moves) since I replaced two 20" CRT monitors with two Samsung 19" LCD monitors. Could this affect the performance of my machine? I've tried everything else to address the freeze problem but recall the issue started when I installed the LCD monitors. Anything I can do?

    Studedot,
    You may have issues with the amount of video memory depending on the resolutions of the new LCD screens.
    I find LCD screens go up to insane resolutions, way more than the corresponding size CRT monitor, ie. a 17in Dell LCD monitor with higher resolution than a 21in CRT.
    It shouldn't cause crashes or freezes, but may cause -redraw problems when closing / moving windows in 2D and playing 3D games.

  • Who can analyze this class ,does it will cause a problem?

    package db;
    import java.sql.*;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.sql.DataSource;
    public class DbManager
    private static Context jdbcContext;
    public static Connection getConnect(String dataSource)
    throws ClassNotFoundException, SQLException
    String s;
    Connection conn=null;
    if (dataSource==null)
    s= "jdbc/hoss";
    else
    s=dataSource;
    if(jdbcContext == null)
    try
    jdbcContext = new InitialContext();
    catch(Exception exception)
    System.out.println(exception);
    try
    conn = ((DataSource)jdbcContext.lookup(s)).getConnection();
    catch(Exception exception1)
    System.out.println(exception1);
    return conn;
    public static ResultSet execQuery(String s,Connection conn)
    throws SQLException
    Statement statement = conn.createStatement();
    ResultSet resultset = statement.executeQuery(s);
         //statement.close();
    return resultset;
    public static ResultSet execQuery(String s,Connection conn,Statement statement)
         throws SQLException
         ResultSet resultset = statement.executeQuery(s);
         return resultset;
    public static int execUpdate(String s,Connection conn)
    throws SQLException
    Statement statement = conn.createStatement();
    int i = statement.executeUpdate(s);
         statement.close();
    return i;
    this is a class writed by me ,but now i have some problem with it
    all the problems is focus on the following method:
    public static ResultSet execQuery(String s,Connection conn)
    throws SQLException
    Statement statement = conn.createStatement();
    ResultSet resultset = statement.executeQuery(s);
         //statement.close();
    return resultset;
    if the statement is closed ,the resultset will automatically be close;
    if you don't close statement here i have two wonder:
    1)after the method return the statement is local variable,it will died
    and the resultset will can also do thing?
    2)whether it will lock the database after long run

    If you don't close the ResultSet and the Statement, I think you may have an SQLException sooner or later, telling you there are no more cursors left.

  • Cisco 12008 Power Supply Fan Tray Hot Swappable? 09/10/14

    Hello,
    I have a power supply fan tray [PART NO. GSR8-PWRBLOWER(=)—Power supply fan tray ] for a EOL Cisco 12008.
    Q: This hot swappable while 12008 is online/powered on?
    Thanks,
    Kent C.

    Typically, when "hot swappable" is mentioned, it means that these items can be replaced while not impacting the operation of the system.
    When an optics module is pulled, traffic will be impacted. Depending upon the system's configuration, the traffic will need to re-converge.
    The optics modules can be installed or removed while the system is powered up.
    Hope this helps.

  • Bypass High Speed fan tray req for Sup720

    Anyone use the command to disabled this feature? What's the command? What's the procedure (boot ROM)? How long can the system run without causing damage? Immediate need to boot until high fan tray can be delivered.

    The command is ALLOWANYFAN=1 in ROMMON. I did not have to use set to add variable, but use it to view. I'm not sure if it's case sensitive. I used all upper case and alarm indicators went out on sup module. Here's some log outout. Notice the temp rising. (The chassis powered down sup module after approx. 5 minutes without these commands. Notice the logg buff output warnings).
    rommon 1 > set
    PS1=rommon ! >
    RTS=02:59:30 PDT Sat Aug 27 2005
    ?=0
    BOOT=disk0:s72033-ipservicesk9_wan-mz.122-18.SXE2.bin,1;
    BSI=0
    RET_2_RCALTS=
    ACL_DENY=0
    PF_REDUN_CRASH_COUNT=0
    rommon 2 > ALLOWANYFAN=1
    rommon 3 > ALLOWANYPS=1
    AFTER:
    rommon 4 > set
    PS1=rommon ! >
    LOG_PREFIX_VERSION=1
    SLOTCACHE=cards;
    RET_2_RTS=02:59:30 PDT Sat Aug 27 2005
    BOOT=disk0:s72033-ipservicesk9_wan-mz.122-18.SXE2.bin,1;
    BSI=0
    RET_2_RCALTS=
    ACL_DENY=0
    PF_REDUN_CRASH_COUNT=0
    ?=0
    ALLOWANYFAN=1
    Router#sh mod
    Mod Ports Card Type Model Serial No.
    2 48 CEF720 48 port 10/100/1000mb Ethernet WS-X6748-GE-TX SAD09330AVJ
    3 48 CEF720 48 port 10/100/1000mb Ethernet WS-X6748-GE-TX SAD093307MP
    5 2 Supervisor Engine 720 (Active) WS-SUP720-3B SAL09337RHD
    FIRST SHOW TEMP:
    Router#sh envir cool
    fan-tray 1:
    fan-tray 1 type: WS-C6K-9SLOT-FAN
    fan-tray 1 version: 1
    fan-tray 1 fan-fail: OK
    chassis per slot cooling capacity: 37 cfm
    module 2 cooling requirement: 70 cfm
    module 3 cooling requirement: 70 cfm
    module 5 cooling requirement: 35 cfm
    Router#sh envir temp
    VTT 1 outlet temperature: 19C
    VTT 2 outlet temperature: 19C
    VTT 3 outlet temperature: 32C
    module 2 outlet temperature: 22C
    module 2 inlet temperature: 16C
    module 5 outlet temperature: 24C
    module 5 inlet temperature: 19C
    module 5 device-1 temperature: 28C
    module 5 device-2 temperature: 27C
    module 5 asic-1 (SSO-1) temp: 19C
    module 5 asic-2 (SSO-2) temp: 18C
    module 5 asic-3 (SSO-3) temp: 18C
    module 5 asic-4 (SSO-4) temp: 19C
    module 5 asic-5 (SSA-1) temp: 18C
    module 5 asic-6 (HYPERION-1) temp: 18C
    module 5 RP outlet temperature: 20C
    module 5 RP inlet temperature: 20C
    module 5 EARL outlet temperature: 32C
    module 5 EARL inlet temperature: 19C
    LAST SHOW TEMP:
    Router#sh envir temp
    VTT 1 outlet temperature: 19C
    VTT 2 outlet temperature: 19C
    VTT 3 outlet temperature: 29C
    module 2 outlet temperature: 38C
    module 2 inlet temperature: 18C
    module 5 outlet temperature: 26C
    module 5 inlet temperature: 19C
    module 5 device-1 temperature: 31C
    module 5 device-2 temperature: 31C
    module 5 asic-1 (SSO-1) temp: 19C
    module 5 asic-2 (SSO-2) temp: 19C
    module 5 asic-3 (SSO-3) temp: 19C
    module 5 asic-4 (SSO-4) temp: 19C
    module 5 asic-5 (SSA-1) temp: 19C
    module 5 asic-6 (HYPERION-1) temp: 19C
    module 5 RP outlet temperature: 21C
    module 5 RP inlet temperature: 21C
    module 5 EARL outlet temperature: 35C
    module 5 EARL inlet temperature: 20C
    LOGGING BUFFER WARNINGS:
    00:01:23: %OIR-SP-6-INSPS: Power supply inserted in slot 1
    00:01:23: %C6KPWR-SP-4-PSOK: power supply 1 turned on.
    00:01:24: SP: Warning: Module 2 cannot be sufficiently cooled. Should disallow module power up
    but allowing.
    00:01:25: SP: Warning: Module 3 cannot be sufficiently cooled. Should disallow module power up
    but allowing.
    00:01:25: SP: Warning: DFC on Supervisor requires chassis fan upgrade. Should shutdown system b
    ut not doing so.
    00:01:26: %FABRIC-SP-5-CLEAR_BLOCK: Clear block option is off for the fabric in slot 5.
    00:01:26: %FABRIC-SP-5-FABRIC_MODULE_ACTIVE: The Switch Fabric Module in slot 5 became active.
    00:01:26: SP: Warning: Module 2 cannot be sufficiently cooled. Should disallow module power up
    but allowing.
    00:01:26: SP: Warning: Module 2 cannot be sufficiently cooled. Should disallow module power up
    but allowing.

  • URGENT: Can't publish app after November update - Project Siena

    Hi,
    I have several apps that I want to publish, but am unsuccessful.
    After update in November came out my Siena refused to publish so I reinstalled it from the App Store just now. Even though I did this, in the new version, the same message keeps appearing.
    Why can't I publish?
    This is pretty urgent, as I need to present the apps in 24 hours to our customer.  My ass is on the line...
    Any help appreciated - BIG THANKS
    Peter

    Peter,
    I'm not sure if you're working with a company issued device that may have restrictions which are causing you problems (we've seen this in the forums for previous versions) and considering you have a short turn-around, have you tried installing Project Siena
    on another PC?
    Another route would be to set up a virtual machine and install Siena.  Microsoft offers 90 day virtual machines in various platforms that may help in getting things set up quicker:
    https://modern.ie/en-us/virtualization-tools#downloads
    Thor

  • Can't see tray 3 in the settings on Laserjet Pro 400

    I just bought an Hp Laserjet Pro 400 M401dne with the extra tray (CF284A).
    I can see the tray in the going at 192.168.1.113 but i can't see it in the windows printer settings...i see only tray 1 (manual feeding), tray 1, tray 2. No tray 3.
    Can you suggest something please?

    I'd recommend talking to someone at HP support.  I have a copy of the instructions to install the 500 sheet tray but it is only picture format.  There is no wording to tell you what happens next.  I assume that the accessory add-on try has some pin or connector that lets the printer and system know that you added an additional tray.  Perhaps the detecting mechanism could be not working.
    Hope this helps.

  • Creative Mixer 'can't register tray icon' after updating dri

    I have Soundblaster 6pci and was having problems with 'warbled' sound. I updated the driver and now every time I reboot, I keep getting the error "Creative Mixer can't register tray icon" and the arrow by my startup programs won't appear. The mixer is checked in msconfig. If I do a system restore or reinstall the old driver, the mixer starts on reboot, but then I have no sound. Even doing a clean reinstall of the original driver doesn't repair the sound.
    Any suggestions?

    The app will be in following folder:
    Win:Program Files\Adobe\Adobe Photoshop CC
    Mac:Applications /Adobe Photoshop CC
    If it not there Run the Cleaner tool to remove Ps CC :http://www.adobe.com/support/contact/cscleanertool.html . Restart your system and then try installing Ps again from CC app.
    Regards,
    Ashutosh

  • 6509E Fan tray 1 mode change failed

    I have just installed a CEF720 8 port 10GE with DFC   WS-X6708-10GE card in an existing 6509E Chassis and it shuts down due to inadequate cooling.
    I have another 6509E Chassis with exactly the same setup and it works ok with that. Both are brand new.
    The one transfers to High power mode and the other fails when trying to swap to restricted mode.
    *Mar  5 13:55:38.527: %C6KENV-SP-4-FANHPMODE: Fan-tray 1 is operating in high power mode
    *Mar  5 13:55:38.535: %C6KENV-SP-4-INSUFFCOOL: Module 9 cannot be adequately cooled
    *Mar  5 13:56:38.787: %C6KENV-SP-3-FANMODEFAIL: Fan-tray 1 mode change failed
    #sh env cooling
    fan-tray 1:
      fan-tray 1 type: WS-C6509-E-FAN
      fan-tray 1 mode: Restricted-power
      fan-tray 1 fan-fail: OK
    chassis per slot cooling capacity: 70 cfm
    ambient temperature: < 55C
      module 1 cooling requirement: 30 cfm
      module 2 cooling requirement: 30 cfm
      module 3 cooling requirement: 30 cfm
      module 5 cooling requirement: 35 cfm
      module 8 cooling requirement: 70 cfm
      module 9 cooling requirement: 84 cfm
    environmental alarms:
      no alarms
    backplane:
      operating clock count: 2
      operating VTT count: 3
      operating fan count: 1
    fan-tray 1:
      fan-tray 1 type: WS-C6509-E-FAN
      fan-tray 1 mode: Restricted-power
      fan-tray 1 fan-fail: OK
    VTT 1:
      VTT 1 OK: OK
      VTT 1 outlet temperature: 0C
    VTT 2:
      VTT 2 OK: OK
      VTT 2 outlet temperature: 0C
    VTT 3:
      VTT 3 OK: OK
      VTT 3 outlet temperature: 0C
    clock 1:
      clock 1 OK: OK, clock 1 clock-inuse: in-use
    clock 2:
      clock 2 OK: OK, clock 2 clock-inuse: not-in-use
    power-supply 1:
      power-supply 1 fan-fail: OK
      power-supply 1 power-input: AC high
      power-supply 1 power-output-mode: high
      power-supply 1 power-output-fail: OK
    power-supply 2:
      power-supply 2 fan-fail: OK
      power-supply 2 power-input: AC high
      power-supply 2 power-output-mode: high
      power-supply 2 power-output-fail: OK
    module 1:
      module 1 power-output-fail: OK
      module 1 outlet temperature: 27C
      module 1 inlet temperature: 23C
      module 1 device-1 temperature: 27C
      module 1 device-2 temperature: 23C
      module 1 VDB outlet temperature: 25C
      module 1 VDB inlet temperature: 24C
      module 1 VDB device-1 temperature: 25C
    module 2:
      module 2 power-output-fail: OK
      module 2 outlet temperature: 26C
      module 2 inlet temperature: 23C
      module 2 device-1 temperature: 27C
      module 2 device-2 temperature: 24C
      module 2 VDB outlet temperature: 25C
      module 2 VDB inlet temperature: 23C
      module 2 VDB device-1 temperature: 25C
    module 3:
      module 3 power-output-fail: OK
      module 3 outlet temperature: 27C
      module 3 inlet temperature: 23C
      module 3 device-1 temperature: 28C
      module 3 device-2 temperature: 23C
      module 3 VDB outlet temperature: 23C
      module 3 VDB inlet temperature: 22C
      module 3 VDB device-1 temperature: 25C
    module 5:
      module 5 power-output-fail: OK
      module 5 outlet temperature: 32C
      module 5 inlet temperature: 21C
      module 5 device-1 temperature: 26C
      module 5 device-2 temperature: 29C
      module 5 asic-1 temperature: 51C
      module 5 asic-3 temperature: 35C
      module 5 asic-4 temperature: 46C
      module 5 RP outlet temperature: 25C
      module 5 RP inlet temperature: 26C
      module 5 EARL outlet temperature: 28C
      module 5 EARL inlet temperature: 23C
    module 8:
      module 8 power-output-fail: OK
      module 8 outlet temperature: 23C
      module 8 inlet temperature: 22C
      module 8 device-1 temperature: 20C
      module 8 device-2 temperature: 24C
    chassis connector rating: 1302.00 Watts (31.00 Amps @ 42V)
    chassis auxiliary connector rating: 2016.00 Watts (48.00 Amps @ 42V)
    module 1
      module 1 connector rating: 1260.00 Watts (30.00 Amps @ 42V)
      module 1 vdb connector rating:  850.08 Watts (20.24 Amps @ 42V)
      module 1 power consumption:  132.72 Watts ( 3.16 Amps @ 42V)
    module 2
      module 2 connector rating: 1260.00 Watts (30.00 Amps @ 42V)
      module 2 vdb connector rating:  850.08 Watts (20.24 Amps @ 42V)
      module 2 power consumption:  132.72 Watts ( 3.16 Amps @ 42V)
    module 3
      module 3 connector rating: 1260.00 Watts (30.00 Amps @ 42V)
      module 3 vdb connector rating:  850.08 Watts (20.24 Amps @ 42V)
      module 3 power consumption:  132.72 Watts ( 3.16 Amps @ 42V)
    module 5
      module 5 connector rating: 1260.00 Watts (30.00 Amps @ 42V)
      module 5 power consumption:  338.10 Watts ( 8.05 Amps @ 42V)
    module 8
      module 8 connector rating: 2016.00 Watts (48.00 Amps @ 42V)
      module 8 power consumption:  125.16 Watts ( 2.98 Amps @ 42V)
    module 9
      module 9 connector rating: 2016.00 Watts (48.00 Amps @ 42V)
      module 9 power consumption:  444.36 Watts (10.58 Amps @ 42V)
    chassis per slot cooling capacity: 70 cfm
    ambient temperature: < 55C
      module 1 cooling requirement: 30 cfm
      module 2 cooling requirement: 30 cfm
      module 3 cooling requirement: 30 cfm
      module 5 cooling requirement: 35 cfm
      module 8 cooling requirement: 70 cfm
      module 9 cooling requirement: 84 cfm
    *Mar  5 13:55:38.527: %C6KENV-SP-4-FANHPMODE: Fan-tray 1 is operating in high power mode
    *Mar  5 13:55:38.535: %C6KENV-SP-4-INSUFFCOOL: Module 9 cannot be adequately cooled
    *Mar  5 13:56:38.787: %C6KENV-SP-3-FANMODEFAIL: Fan-tray 1 mode change failed
    #sh mod
    Mod Ports Card Type                              Model              Serial No.
      1   48  SFM-capable 48 port 10/100/1000mb RJ45 WS-X6548-GE-45AF   SAL1335XN4J
      2   48  SFM-capable 48 port 10/100/1000mb RJ45 WS-X6548-GE-45AF   SAL1336Y10M
      3   48  SFM-capable 48 port 10/100/1000mb RJ45 WS-X6548-GE-45AF   SAL1539QUPY
      5    5  Supervisor Engine 720 10GE (Active)    VS-S720-10G        SAL1532LPPY
      8   24  CEF720 24 port 1000mb SFP              WS-X6724-SFP       SAL1227WDGA
      9    8  CEF720 8 port 10GE with DFC            WS-X6708-10GE      SAL1746G73Z
    Mod MAC addresses                       Hw    Fw           Sw           Status
      1  0027.0d00.2910 to 0027.0d00.293f  12.5   7.2(1)       12.2(33)SXJ  Ok
      2  0027.0d00.2880 to 0027.0d00.28af  12.5   7.2(1)       12.2(33)SXJ  Ok
      3  44d3.ca8b.bed0 to 44d3.ca8b.beff  12.7   7.2(1)       12.2(33)SXJ  Ok
      5  68ef.bd83.524c to 68ef.bd83.5253   4.0   8.5(4)       12.2(33)SXJ  Ok
      8  0021.d88c.1e10 to 0021.d88c.1e27   3.2   12.2(18r)S1  12.2(33)SXJ  Ok
      9  c067.afc4.09b8 to c067.afc4.09bf   3.6   Unknown      Unknown      PwrDown
    Mod  Sub-Module                  Model              Serial       Hw     Status
      1  IEEE Voice Daughter Card    WS-F6K-48-AF       SAL1336Y0SH  2.4    Ok
      2  IEEE Voice Daughter Card    WS-F6K-48-AF       SAL1336Y01P  2.4    Ok
      3  IEEE Voice Daughter Card    WS-F6K-48-AF       SAL1538QHUV  2.5    Ok
      5  Policy Feature Card 3       VS-F6K-PFC3C       SAL1531L4CR  1.1    Ok
      5  MSFC3 Daughterboard         VS-F6K-MSFC3       SAL1531LH76  5.1    Ok
      8  Centralized Forwarding Card WS-F6700-CFC       SAL1227W50M  4.1    Ok
      9  Distributed Forwarding Card WS-F6700-DFC3C     SAL1744FFSW  1.6    PwrDown
    Mod  Online Diag Status
      1  Pass
      2  Pass
      3  Pass
      5  Pass
      8  Pass

    Hi see the below information:
    About the Fan Tray Mode: This high power mode may change to restricted power mode depending upon the environment temperature, the fan may be working at High or Restricted mode depending on the cooling needed at the moment.
    Restricted Power mode: This is a default mode for a fan-tray operation. This mode ensures that there is an adequate amount of cooling provided to the chassis to keep its temperature in control.
    High Power mode: This is another mode which is used for future line cards if there an increase in temperature due to addition of modules. In our case, this mode only gets in use when there is WS-X6708-10GE module inserted. Logs are getting displayed as new module is causing rise in chassis temperature and fan-tray has to accommodate more cooling thereby changing its operating mode.
    The WS-X6708-10GE requires 84 cfm. Installing a second fan module in the chassis should bring the chassis cooling capacity up to 84 cfm per line card. WS-X6708-10GE is supported in non-E Series chassis at operating temperature up to 40 C only.
    Hope this helps.

  • HP Pavilion 23 will not turn on- can hear fan, power light is on, nothing on screen

    HP Pavillin 23 will not turn on/power up???.
    When we press the power button:
    - can hear fan
    -power light on back of computer is lit (where power cord is plugged in)
    -power light on top of computer is lit
    -but nothing happens with the screen. No light at all, no screen at all; it remains black.
    Help please!
    Thank you so much!

    It is important to know the exact model #, and current OS of this AIO.  Just saying 23 is like owning a Chevy.
    I am a volunteer. I am not an HP employee.
    To say THANK YOU, press the "thumbs up symbol" to render a KUDO. Please click Accept as Solution, if your problem is solved. You can render both Solution and KUDO.
    The Law of Effect states that positive reinforcement increases the probability of a behavior being repeated. (B.F.Skinner). You toss me KUDO and/or Solution, and I perform better.
    (2) HP DV7t i7 3160QM 2.3Ghz 8GB
    HP m9200t E8400,Win7 Pro 32 bit. 4GB RAM, ASUS 550Ti 2GB, Rosewill 630W. 1T HD SATA 3Gb/s
    Custom Asus P8P67, I7-2600k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX660 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Custom Asus P8Z77, I7-3770k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX670 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Both Customs use Rosewill Blackhawk case.
    Printer -- HP OfficeJet Pro 8600 Plus

  • What type of line card can be inserted into 7606 or 6509?

    what type of line card can be inserted into 7606 or 6509? Please, differentiate them! Thanks

    Hi,
    It depend on what IOS version you are running. Older IOS version will not support newer line card. Is there any line card you want to insert between the 7600 and 6500?
    Regards,
    jerry

  • How can I delete my old iCloud account cause I forgot my password and my email has been block. Please I need help urgently

    How can I delete my old iCloud account cause I forgot my password and my email has been block. Please I need help urgently

    Contact the Apple account security team for assistance resetting your password: Apple ID: Contacting Apple for help with Apple ID account security.

Maybe you are looking for

  • Jframe is flickering -- Urgent help please!

    Basically i want to resize the window when i click some button say, NEW or EDIT and making some components visible. I am using setSize() method to resize the Jframe/window and setVisible() method. Do i need to use other methods. If you need some othe

  • Lockbox Processing of Discounts

    Hi All, We have purchased a new business and their payments terms to not fit in with standard SAP (their discounts go six levels).  So, they use a speadsheet and handle it manually.  We want to be able to process this with our normal lockbox processi

  • SRM POWL - How to add/update longtext (internal note) of invoice

    created powl for mass approval/rejection of invoice For Rejection 'm adding 'reason for rejection' & 'internal note' fields Which i need to update in invoice --> notes & attachment --> 'reason for rejection' & 'internal note' I am doing it as -- TRY.

  • Read and write existing xml file trouble !

    Hi everyone !  i'm trying to save hight score of user in my game by using a xml file , in my xml file has element <best_score>0<best_score/> and my code to do it is :   XElement best=XElement.Load("Assets/best.xml");             IEnumerable<XElement>

  • Unable to expand movie clip inside of scroll

    I inherited a .fla file with a scrolling thumbnail image movie clip that moves horizontally inside of a "scroll" behind a mask, with the use of right and left buttons. < > The thumbnail movie clip is much wider than the movie's dimensions. I think it