Aironet 1100 RED-GREEN-RED lights on

Hello,
my Aironet 1100 has the red-green-red leds on, how can i replace the IOS, how can i access it, i'm having problems using Ethernet?
thanks

Just had the same thing happen. I hooked the AP up to a laptop via ethernet cable, held the Mode button while connecting the power to the AP, and used tftp to transfer the image back to the AP.

Similar Messages

  • Charger Light keeps Blinking. (red green red green)

    hi I just noticed this yesterday.
    When my battery is fully charged, the light on the charger does not remain green. It will switch to red for a second and another second it goes to green again. It has been doing this for a whole day already. What's wrong with it?
    I know the charger is still fine, because it doesn't blink when the battery isn't full and my laptop is still working okay.
    thanks so much!

    Check your power adapter plug and port for any debris with may be preventing a tight connection or blocking the pins from extending fully.
    Alternatively, it may be a problem with your SMC, which you can reset as described here.
    If that does not do the trick, it's likely a faulty power adapter, and I'd recommend a call to AppleCare.
    Hope this helps...

  • Alv list ..records with green ,red, yellow,grey lights

    Hello Experts,
    I have one requirement,
    in my alv list if the records match the recors should be displayed with GREEN light,
    similarly for other mmatches it should display with red, yellw, grey lights.
    please help me by sending the coding ,its an urgent requirement.
    thanks ,
    shaik.

    Zameera,
    *& Report ZMDEMO_ALV_04
    *&Make an Exception field ( = Traffic lights)
    *&There can be defined a column in the grid for display of traffic lights. This field is of type Char 1, and can contain the following values:
    *& 1 Red
    *& 2 Yellow
    *& 3 Green
    *&The name of the traffic light field is supplied inh the gs_layout-excp_fname used by method set_table_for_first_display.
    report zmdemo_alv_04.
    tables: sflight.
    type-pools: icon.
    types: begin of ty_sflight.
    include structure sflight.
    types: traffic_light type c,
    lights LIKE icon_xml_doc,
    lights(4),
    icon type icon-id.
    types: end of ty_sflight.
    G L O B A L I N T E R N A L T A B L E S
    data: t_sflight type standard table of ty_sflight.
    G L O B A L D A T A
    data: ok_code like sy-ucomm,
    wa_sflight type ty_sflight.
    Declare reference variables to the ALV grid and the container
    data:
    go_grid type ref to cl_gui_alv_grid,
    go_custom_container type ref to cl_gui_custom_container.
    data:
    t_fcat type lvc_t_fcat,
    wa_layout type lvc_s_layo.
    S T A R T - O F - S E L E C T I O N.
    start-of-selection.
    perform build_fieldcat.
    perform build_layout.
    set screen '100'.
    *& Module USER_COMMAND_0100 INPUT
    module user_command_0100 input.
    case ok_code.
    when 'EXIT'.
    leave to screen 0.
    endcase.
    endmodule. " USER_COMMAND_0100 INPUT
    *& Module STATUS_0100 OUTPUT
    module status_0100 output.
    Create objects
    if go_custom_container is initial.
    create object go_custom_container
    exporting container_name = 'ALV_CONTAINER'.
    create object go_grid
    exporting
    i_parent = go_custom_container.
    perform load_data_into_grid.
    endif.
    endmodule. " STATUS_0100 OUTPUT
    *& Form load_data_into_grid
    form load_data_into_grid.
    data l_light type c value '1'.
    Read data from table SFLIGHT
    select *
    from sflight
    into table t_sflight.
    Condition placing to the traffic_light Field
    LOOP AT t_sflight INTO wa_sflight.
    wa_sflight-traffic_light = l_light.
    MODIFY t_sflight FROM wa_sflight.
    IF l_light = '3'.
    l_light = '1'.
    ELSE.
    l_light = l_light + 1.
    ENDIF.
    ENDLOOP.
    Setting the Icon based on the traffic_light field value.
    LOOP AT t_sflight INTO wa_sflight.
    CASE wa_sflight-traffic_light.
    WHEN '1'.
    wa_sflight-lights = icon_red_light.
    WHEN '2'.
    wa_sflight-lights = icon_yellow_light.
    WHEN '3'.
    wa_sflight-lights = icon_green_light.
    ENDCASE.
    MODIFY t_sflight FROM wa_sflight.
    ENDLOOP.
    loop at t_sflight into wa_sflight.
    case l_light.
    when '1'.
    wa_sflight-lights = icon_red_light.
    when '2'.
    wa_sflight-lights = icon_yellow_light.
    when '3'.
    wa_sflight-lights = icon_green_light.
    endcase.
    if l_light = '3'.
    l_light = '1'.
    else.
    l_light = l_light + 1.
    endif.
    modify t_sflight from wa_sflight.
    endloop.
    Load data into the grid and display them
    call method go_grid->set_table_for_first_display
    exporting
    I_BUFFER_ACTIVE =
    I_BYPASSING_BUFFER =
    I_CONSISTENCY_CHECK =
    i_structure_name = 'SFLIGHT'
    IS_VARIANT =
    i_save = 'A'
    I_DEFAULT = 'X'
    is_layout = wa_layout
    IS_PRINT =
    IT_SPECIAL_GROUPS =
    IT_TOOLBAR_EXCLUDING =
    IT_HYPERLINK =
    IT_ALV_GRAPHICS =
    IT_EXCEPT_QINFO =
    IR_SALV_ADAPTER =
    changing
    it_outtab = t_sflight[]
    it_fieldcatalog = t_fcat
    IT_SORT =
    IT_FILTER =
    EXCEPTIONS
    INVALID_PARAMETER_COMBINATION = 1
    PROGRAM_ERROR = 2
    TOO_MANY_LINES = 3
    others = 4
    endform. " load_data_into_grid
    *& Form build_fieldcat
    text
    --> p1 text
    <-- p2 text
    form build_fieldcat .
    data: w_fcat type lvc_s_fcat.
    define macro_fcat.
    w_fcat-fieldname = &1.
    w_fcat-col_pos = &2.
    w_fcat-coltext = &3.
    append w_fcat to t_fcat.
    clear w_fcat.
    end-of-definition.
    macro_fcat 'CARRID' 1 text-c01 .
    macro_fcat 'CONNID' 2 text-c02 .
    macro_fcat 'FLDATE' 3 text-c03 .
    macro_fcat 'PRICE' 4 text-c04 .
    macro_fcat 'SEATSMAX' 5 text-c05 .
    macro_fcat 'SEATSOCC' 6 text-c06 .
    macro_fcat 'LIGHTS' 7 text-c07 .
    endform. " build_fieldcat
    *& Form build_layout
    text
    --> p1 text
    <-- p2 text
    form build_layout .
    wa_layout-cwidth_opt = 'X'.
    wa_layout-excp_fname = 'TRAFFIC_LIGHT'.
    wa_layout-excp_group = '1'.
    endform. " build_layout
    Pls. Reward if useful.

  • How do i put red or green spot lights on ALV?

    Hi Friends,
    Below issue is very very urjent how to do, can u please guide me.
    Select vbak-vbeln vbap-posnr vbap-matnr  vbap-kwmeng vbak-erdat vbak-erzet from VBAK , VBAP  for the selection criteria.
    If data found select all data from table  ZATCORDERS where erdat = s_erdat 
    Loop thru on  it_vbakp .   In the loop on each iteration Read the record from it_atcord where vbeln = wa_vbakp-vbeln and  posnr = wa_vbakp-posnr                                                                               
    and ra_date = wa_vbakp-erdat
                                                                                    and ra_time >= wa_vbakp-erzet .
    If read fails display the record with Red Stoplight icon else show with green light .
    If p_diff = ‘X’ . Only records with red stop light need to be shown else all the records should be displayed in ALV.
    how do i put red or green spot lights.
    Thanks in addvance.
    manisha.
    Edited by: Alvaro Tejada Galindo on Feb 28, 2008 1:39 PM

    INCLUDE <ICON>.
    Add the following field to your internal table...
    ADITIONAL(5) TYPE C.
    In orden to put a light on the ALV...
    ADITIONAL = ICON_RED_LIGHT.
    ADITIONAL = ICON_GREEN_LIGHT.
    Greetings,
    Blag.

  • I have a second generation shuffle and even though (after charging ) the green battery light is on - soon after it turns orange and then red. Is there a problem with the battery and is it fixable?

    I have a second generation shuffle and even though (after charging) the green battery light is on it soon turns orange and red. Is there a problem with the battery and if so is it fixable?

    If it's a 2nd gen shuffle, it is probably about six years old at this point.  The cause is likely to be a worn out battery that is no longer able to hold its charge for very long.
    It is technically fixable.  This web site has repair guides
    http://www.ifixit.com/Device/iPod_Shuffle
    But it is very small, so you need to be good at doing such things.  The cost to have a repair shop do the work is likely to be uneconomical, compared to the cost of a brand new 4th gen shuffle ($50), which has more features (and possibly double the storage) plus a one-year warranty.

  • My MB Pro will not power up. when I look at the connector for the power supply, the green/red indicator on the connector is not lighting up

    It appears to not be charged and when I go to plug in the charger the green/red indicator on the connector is not lighting up.

        Reset SMC.     http://support.apple.com/kb/HT3964
      Choose the method for:
      "Resetting SMC on portables with a battery you should not remove on your own".
         If this does not help, contact Apple.
       Genius Bar reservation:
       http://www.apple.com/retail/geniusbar/
    Best.

  • BH-503 green/red leds on at same time

    Hello folks!!!
    eraly december I bought an Nokia BH-503 over internet. The device arrived perfectly, but 2 days ago it just "bricked".
    I was trying to pair it to my iPhone and then both red and green leds lighted up... I did try to turn the device off several times, holding every single key for some extra seconds... none worked.. I did try to plug it to charger and hold multi-key + volume up, no results at all...
    After 2 days these two little fellows still on and shinning... and I cant even turn the device off... 
    Any idea what I could do?
    Cheers

    forget it folks. 
    after 4 days with the leds on, it went off and after recharge the device came back to life
    Cheers

  • Green/Red Focus Box Missing and Flicker/Flash on LCD

    Greetings:
    1) I recently reset my T3i and can't figure out why the center focus box that turns green or red isn't performing as it used to. When I depress the shutter button for AF the box is there but doesn't turn green or red. It also used to stay on the LCD as green as I took the picture which isn't anylonger as well.
    What happens now is it does its focus thing without turning colors and then snaps.
    2) Also, all info on the screen disappears when I snap. All info meaning the grid I have up, the focus box and all other info ie. histogram and settings that are on the left side of the LCD. If I recall correctly, all info stayed on screen including the focus box green or red.
    3) Lastly, the focus box will flash green when I snap the shot but that only happens "sometimes" and not always.
    4) One other thing I noticed too is as I depress the shutter button or snap the shot I get a pink flicker on the LCD which wasn't happening before.
    Any ideas how to fix these issues?
    Thanks in advance.

    If the focus points in the viewfinder are blurry then it means you need to adjust the diopter on the viewfinder.
    On the upper-right corner of your viewfinder, there's a tiny little wheel.  That wheel allows you to adjust focus for your eyes e.g. if you normally wear glasses, it can correct for diopter adjustment as long as it's in the -3 to +3 range (and the vast majority of people are).  If you need corrects outside that range, Canon sells slide-on diopters that can go even stronger.
    Anyway... to adjust it:
    1)  Point the camera at something with no contrast... such as a plain white wall... or a solid blue sky, etc.   
    2)  Not required, but I actually think this is easier if you deliberately de-focus the lens -- just put it well out of focus and leave it.
    3)  Now look through the viewfinder at those focus points and adjust the tiny wheel in the corner until the focus points are as crisp as possible.  
    The viewfinder is now focused for YOUR eyes.  That means when something appears to be sharply focused, it actually is sharply focused.  
    At this point you should be able to switch on the camera, look through the viewfinder, let it auto-focus on something... and it should look sharp.
    Why:
    As light enters the lens, there's a specific distance from the front of the lens to the focus plane.  There's a special mark on the top of the camera and on your T3i it's left of the hot-shoe ... over by the support ring for the neck-strap on the left side.  The mark looks like a line... with a circle in the middle of it.  That mark indicates the position of the focal plane (the sensor).   When the lens is focused... it's focused to THAT distance.  
    When the reflex mirror is in the "down" position, it bounces light up at a 90º angle into the pentaprism.  But more specifically it's bouncing the image onto the "focus screen".  If you remove the lens and look at the top of the camera you will notice a frosted piece of "glass".  The distance from front of lens, to mirror, to that "focus screen" is EXACTLY the same as the distance from front of lens to the sensor (when the mirror swings clear.)
    This means what you're REALLY doing is projecting the image onto that bit of frosted "glass".  You can think of it as a mini "rear projection" movie screen.    
    Even if the image is tack-sharp on that screen... if your viewfinder diopter isn't adjusted for YOUR eyes then that image would still look a bit blurry.  Once you finish adjusting the diopter you'll be able to trust it.
    BTW, I noticed your post is about the "green/red" box which implies you may be relying on the live-view display.  When you use live-view on your camera it uses a completely different focus system then when you look through the viewfinder.  The focus system used when you look through the viewfinder is MUCH FASTER than the focus-system used in live-view mode.  If you are having issues with focus speed and delays when trying to take photos... switch to using the viewfinder and it'll be much faster.
    Tim Campbell
    5D II, 5D III, 60Da

  • Flashing Red / Green Sys LED

    My Network Extender works off and on. I will have all blue lights, but when I check the NE later I will have a flashing red or green sys light and the other lights will still be blue. I don't know what is causing the issue. I have the GPS module right next to the sliding glass door.

    I am having the same problem with a blinking red sys light and red gps light. The system has been working fine for months and without my changing anything at all, it stopped working yesterday. I am using the correct power supply. I have powered off and on the gateway and the extender several times. My zip is 94306 (although Verizon shows my device as nearby Los Altos 94022 where I think the tower might be). I have AT&T Uverse as my ISP with a standard 2wire modem/router gateway 3800HGV-B. My internet speed is 15.39 Mbps down, 1.93 Mbps up (it is speedtest.net not text): http://www.speedtest.net/my-result/3707324666 VoIP test reports 15.1 and 1.92: Speed test statistics --------------------- Download speed: 15132 kbps Upload speed: 1924 kbps Download consistency of service: 93 % Upload consistency of service: 99 % Download test type: socket Upload test type: socket Maximum TCP delay: 54 ms Average download pause: 1 ms Minimum round trip time to server: 24 ms Average round trip time to server: 24 ms Estimated download bandwidth: 15434 kbps Route concurrency: 1.0199696 Download TCP forced idle: 0 % Maximum route speed: 21845 kbps General information ------------------- IP address: 99.108.141.9 Local time: Aug 22, 2014 4:12:39 PM Test server: http://mcssjc.visualware.com/ Thanks for any help, Larry Kaplan

  • Whole screen turns green/red

    Anyone seen this? I assume a graphics card issue, but my whole screen turns this green/red after sleeping for a while, or overnight. The mouse still moves, and menus come up, just all in this crazy pattern.  I have to force restart to get it to return to normal.
    iMac 2.93 Ghz Intel Core i7
    ATI Radeon HD 5750 graphics card

    Run the hardware test from the DVD that originally came w/your computer.  Post the results.
    Try zapping the PRAM.
    Or you can lug your iMac to your local AS or an AASP.  Diagnostic testing is FREE!

  • HT4108 I have a apple component AV TV out cable (red, green,blue + red,white) and have had this connected to TV for about 6 months working fine.  I moved the TV disconnected cables to move now I can only get video and no sound back on TV.  Any suggestions

    I have a apple component AV TV out cable (red, green,blue + red,white) and have had this connected to TV for about 6 months working fine.  I moved the TV disconnected cables to move now I can only get video and no sound back on TV.  Any suggestions ?

    No answer but marking as answered because I want to clear my unresolved questions.

  • The red, green and yellow buttons in the upper left corner of the screen disappear whenever I open Safari.  I cannot minimize the Safari window which I often need to do if I am coordinating multiple windows.  Does anyone know how to get those buttons back

    The red, green and yellow buttons in the upper left corner of the screen disappear whenever I open Safari.  I cannot minimize the Safari window which I often need to do if I am coordinating multiple windows between different applications.  Does anyone know how to get those buttons back?  I guess I could just switch betwen appliations, but I am used to doing it the other way.

    You're welcome 
    You had Safari in full screen mode.

  • How do I make the red-green-yellow icons and the text in window title bars larger?

    The title text is a little too small to just see - I have to concentrate on it to read it - and I can't tell the red-green-yellow icons apart without staring at them. Yes, my sight is quite poor; I'm already sitting as close as I can.

    sorry about the slang display portal, i just mean the entire screen, like a magnifying glass. There is probably a keystroke, and it's probally all in here:
    I do agree it's a concern, as I have a torn retina, and my eye gets strained quickly.

  • Red green yellow buttons in iTunes 10

    OK, I upgraded to iTunes 10 awhile back and noticed the buttons in upper left corner of window are gray and not red green yellow. I have searched the web for fixes and came up with two
    defaults write com.apple.iTunes full-window -1
    defaults write com.apple.iTunes full-window -int -1
    These work to make the vertical to horizontal, but the color is still gone. What is the terminal entry for getting the color buttons back. Not really concerned with the icons being color at this time but would like the corner buttons color.
    Thanks

    ok...upon further research found answer to this question myself.
    http://answers.yahoo.com/question/index?qid=20091101203328AAUf8py
    thanks for listening..

  • Start up and stuck with the flashing color (red green blue yellow...)

    I just bought Macbook pro(My first time with Mac product) today, and when i unbox the MBP it was have a good start everything is ok, than I test the DVD drive to make sure it work or not, than i put the VCD to it. it was stuck (with the flashing color). than i dont'know what to do. I press the shutdown button around 10s the pc is shutdown...I open it again and eject the VCD, than I was stuck with flashing color (red green blue yellow...) i have try to restart many time buy pressing the button but still the same. than i keep it away for about 1hour than I open it again It was WORKING AGAIN the same as I first started, than I restart, but the same problem happen again (flashing color (red green blue yellow...).
    1. I have tried to boot from DVD that come with the MBP holding C but nothing happen
    2. I have tried to reset PRAM (Command-Option-P-R) not work
    So what wrong with that?
    Could anyone help me to fix this out?
    Thank you

    Solida wrote:
    the flashing is the Macbook pro screen it Flashing Loop, sometime red, than suddenly change to green than yellow than loop again and again.
    Notice when it first start up I see APPLE LOGO than the waiting animation round. than the random screen flashing color is happened.
    Three options:
    1. Call AppleCare.
    2. Go to an Apple Store.
    3. Go to an Apple Authorized Service Provider (AASP)

Maybe you are looking for

  • Compile source files from multiple subdirectories

    Hi. we know that we can compile multiple source files in a folder with the statement: javac -classpath . *.java How can we compile multiple source files that belong to different subfolders without using an IDE? Example: folder1, folder2, & folder3 al

  • Pre Pro CC 2014 Cuda acceleration issue - it's back

    Greetings.  I remember reading an Adobe creative cloud blog that said we now would be able to choose Cuda acceleration even if our card was not on the very SHORT approved list of NVIDIA cards.  That was great!!!  Worked fine with Pr Pro CC (the origi

  • Filter tiffs by bit depth, color space

    A way to filter tiffs by 8 vs. 16bit and also color space? If not doable in PS another means of doing it. Thanks

  • H264 Video in Director 11.5 with Windows 7

    I have a director movie that loops a quicktime mov file (H264 encoding). The arrow keys move the movie around on the stage. Anytime the movie reaches the edge of the monitor the program crashes. The director file is in this zip file: http://www.jstei

  • MacBook Pro problem with iPhone personal hotspot connection

    I think there is a problem with my airport, I can't connect to any iPhone personal hotspots anymore - I used to be able to connect to them, and now it connects but with an exclamation mark saying there is no internet connection? Any help would be gre