PAP 2T-NA blinking SOS

I purchased a Linksys PAP 2T-NA (unlocked) two weeks ago.Last weekend it stopped working after moving it to a different location on the network and it is now only blinking SOS. It does not allow me to connect to its web interface but it still registers with the network (DHCP).
Other posts indicate that the blinking SOS means corrupt Firmware. But how can I fix the firmware if I cant log on to the web interface?
What would the cause the firmware to corrupt?
Is there anything I can do?
Thanks for any help.

Originally posted by: alexandre.magillem.com
Hi Prakash,
well, at the moment, the only way is to develop your own
ManhattanConnectionRouter.
The GEF ManhattanConnectionRouter is limited to one bend and does not
avoid obstacles.
On my side, I'm developing a ManhattanConnectionRouter based on
Hightower algorithm, which seems a good choice for schematic connection
routers.
Regards.
Christophe
Prakash a écrit :
> The ShortestPathConnectionRouter automatically bends the connection when it finds an obstacle on the way. But a ManhattanConnectionRouter doesn't. It runs over the IFigure objects. How to avoid a ManhattanConnectionRouter running over those objects? (attached sample images)
>
>
> ------------------------------------------------------------ ------------
>
>
> ------------------------------------------------------------ ------------
>

Similar Messages

  • Unable to clear "Check Paper" light PSC 1350xi

    Unable to clear "Check Paper" light
    1) Upgraded from XP to Win7 x32
    2) Installed HP PSC 1350xi Win7 driver software using Printer Install Wizard
    3)After many Print attempts, unable to clear "Check Paper" error message
    4) After several uninstall/reinstalls using several HP approved methods, all software diagnostics checked normal except for the blinking "Check Paper' light.
    5) And, yes, I tried adding, removing, adding paper to the tray which appeared normal.
    My guess is a hardware problem.
    Any suggestions?
    Thanks in advance.
    Bill

    Hi @wflint,
    Welcome to the HP Forums!
    I see that you are unable to clear the "Check Paper" light on your HP PSC 1350xi. I am happy to help!
    Please take a look through this guide, Blinking Lights on the HP PSC 1200, 1310, 1340, and 1350 All-in-One Printer Series. Scroll until you see, Issue: The Check Paper light blinks, then click on, Solutions, under Figure 19: The Check Paper light is blinking, and follow the steps.
    Hope this will resolve your issue, and have a wonderful day!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • Verifica carta - check paper

    Hi! I have a problem with my psc 1315. Sorry that I don't speak english ( I speak italian), I will tray to explain the problem: on my printer there is a light in "verifica carta" (check paper). The printer did not have problem with paper since now and there is a lot of papers into the printer in this moment.
    What can I do to? The printer does no more check per exsisting paper?
    Thank you for a replay! 

    Hi @burner04 
    Welcome to the HP Forums!
    I see that your check paper light is on your HP Photosmart C3180 printer, and that you can scan but not print. I am sorry to hear this, but I am happy to help!
    Please go to this guide, Blinking Lights on the HP PSC 1500 and Photosmart C3100 All-in-One Printer Series, scroll down untill you see the section Issue: The Check Paper light is blinking, then click on Solutions and follow the steps there.
    Hope this works out, and have a great day!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • C3180 Printing on narrow paper

    I was just about to post that I couldn't get the printer to print address labels correctly on a 4.25 x 11" sheet.  But now I got it to work by  entering a custom paper size in the "Resizing options" in the printer setup.
    But this is a pain.  So every time I want to print on a different paper size I have to set the exact paper size in the printer setup, in addition to setting up the page in Microsoft Word (or whatever program)?   I suppose this would be true for envelopes too.  With my previous (HP) printer it was automatic: if the paper size I loaded in the printer matched my document, I was all set -- the printer would just detect the paper size and work.
    I had to set the paper size in the "Resizing options" when in reality I'm not resizing anything.  Am I missing something here?  Is this really what I should have to do?  It would seem the resizing options should be for when you really want to print to a size that is different than the actual document.  But without using the resizing option I got an error from the printer saying the paper size is incorrect and the "check paper" light would blink.  After pressing the cancel button on the printer the document would proceed to print, but with only the left side of the document printing on the right side of the page.  If instead I loaded 8.5 x 11" paper it would print my narrow document right down the middle of the page instead of being aligned on the left.
     Note that in the resizing options the "Print at actual size" radio button is selected -- not the scaling option.  There is no "Automatic" option for the resizing options.  Also I installed the latest driver.

    Gary Scotland wrote:
    Use an image editing application to create a pure black and white image with maximum contrast, painting in where needed in the black area to produce maximum black.
    This is how I have already created them.
    In the printer driver settings set:
    colour settings option:   print in Greyscale not in colour mode
    Greyscale option is not available, but I can just print in black, which does not cover enough.
    paper or media settings option choose:   Transparency
    There is no option for Transparency paper

  • Problem printing out to a parallelport printer

    Hello, I am using the javax.comm.*; package and I am having problems
    printing to the parallelport.
    Well, it prints out the string but the problem is that the light for paper feed
    starts blinking eventhough there is paper , once I click the paper feed button
    the printer then prints out the string.
    So, basically, everything is ok, apart from that I have to press the paper feed
    button for each time I want to print something.
    There is an error in my code somewhere, but as I am new to port communications I cannot understand what to do.
    Below is my code, please help.
    Thanks!
    public void print(String s){
    Enumeration ports;
    CommPortIdentifier portId;
         try{
              portId = CommPortIdentifier.getPortIdentifier("LPT1");
             addPort(portId,s);
         }catch (NoSuchPortException e){
                     e.printStackTrace();
    public static void addPort(CommPortIdentifier portId,String s){
         try{
              ParallelPort port = (ParallelPort)portId.open("LPT1",2000);
            /*port.notifyOnError(true);
            port.notifyOnBuffer(true);
            port.addEventListener(new ParallelPortEventListener(){
                   public void parallelEvent(ParallelPortEvent ppe){
                           System.out.println(ppe.toString());
                           System.out.println("An event has occured");
              try{
                   OutputStream os = port.getOutputStream();
                   if(os == null){
                        System.out.println("Os is null");
                   else{          
                          os.write(s.getBytes());
                   //os.flush();
              catch(Exception eis){
                   eis.printStackTrace();
              port.close();
         catch(PortInUseException e){
              System.out.println(e.currentOwner);
              e.printStackTrace();
         catch(Exception ecl){
              ecl.printStackTrace();
    }Of course this class imports :
    import java.util.Enumeration;
    import javax.comm.*;
    import javax.comm.CommPort;
    import javax.comm.CommPortIdentifier;
    import javax.comm.ParallelPort;
    import javax.comm.NoSuchPortException;
    import javax.comm.PortInUseException;
    import java.io.*;

    Wow - I wonder how the OP thought that the
    Developers Home > Developer Forums > Java Forums >
    Java Mobility Forums > Consumer and Commerce >Consumer and Commerce General >
    Forum was a correct choice for this problem??It's the same logic that leads one to believe that being new to port communications omits them from the responsibility of using general troubleshooting techniques to isolate/identify a problem.
    This logic often leads to obscure questions also, sadly.

  • Scanning/ Ink problems

    I am not able to scan a piece of paper on my HP Deskjet 2514, I don't know if it has to do with me buying a new ink cartrige but it will not scan anymore like it used to so I need help.

    I have not seen any error messages, I have disconnected it from the outlet but it's still not able to print. While I'm trying to scan a piece of paper the printer blinks its power button.

  • I have an old office deskjet 1220c - the led's keep blinking & it won't grab the paper - help

    I am trying to set up an old HP Deskjet 1220C and the LED's are blinking, saying there is a paper jam, but there is no paper jam.  I have made sure that the back cover is locked, cleaned all the rollers, etc, but it still won't stop blinking.  Any helpful suggestions would be appreciated.  Thanks!
    This question was solved.
    View Solution.

    The page here may help with the paper feed issues.  Also open the lid with the power on and make sure the carriage moves to the "smiley face" position, look at the icons on the upper back portion of the printer as shown here.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Workaround for Reader 10.1.2 print "Duplex setting/Printer Blinking/Paper Tray" issue

    Dear users,
    We have been receiving feedbacks from our users related to the recent "Duplex setting/Printer Blinking/Paper Tray" problems faced.
    A lot of these issues have been faced due to introduction of "Print on Both sides" setting right on the Print Dialog in order to help our users set this option without having to go to the printer properties dialog. However, we have made this option as default ON and hence users have reported problems described above.
    Thus, we request you to please try unchecking this setting to OFF state and then print to see if that resolves the problem faced.
    Thanks,
    Atul Agarwal
    Adobe Systems

    You can easyly solve this with the following procedure:
    Open your Windows Group Policy Editor, chose "New Group Policy", go to UserConfiguration->Settings->Windows Settings->Registry. Right click "Registry", chose "new-> registry assistent", local computer, go to
    [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\10.0\AVGeneral]
    "iDuplexMode"=dword:00000002
    (mark only "iDuplexMode" !)
    and click "finish".
    Doubleclick that new entry down till you see "iDuplexMode", double click it too, and change the REG_DWORD value into "1" (decimal). At the very top I also chose "replace" under "action" (not sure if really needed)
    Close the GPO editor and link that newly create group policy to you domain or OU or whatever.
    You can make a "gpupdate /force"at a client to see the reg entry changing from "2" (= dublex) to "1" (=non duplex).
    Reboot your clients or just wait your personal "gpupdate time period".
    Thanks Adobe for that setting!
    BTW: You can also config that with the "Adobe Customization Wizard X" and save it in a .mst file to roll out your installation with Active Directory software distribution or your favorite tool. Unfortunatly - as it is an entry in HKEY_CURRENT_USER - this hive is only load after log in and it is not present during bootup installation, so your setting gets lost.
    You can do the same for Adobe Acrobat X, if you need. The Key is:
    HKEY_CURRENT_USER\Software\Adobe\Acrobat\10.0\AVGeneral] 
    "iDuplexMode"=dword:00000002

  • SOS help please. Macbook Pro won't turn on. Blinking Light

    Hello to everyone this is my first post here and sadly its about a problem with my macbook pro.
    The notebook in question is a 17'' Macbook Pro I bought in September 2008.
    I simply closed it (without turning it off, just let it go on sleep) and took it with me as usual and when I tried turning it on again, it would not turn on.
    I press the power button and I hear the hard drive/superdrive (not sure which of the two) start up and I see the sleep light turn on but after a few seconds its turns off again. If I hold the power button down for a few seconds the sleep light starts blinking and then the notebook turns off once more. In all cases the screen is black.
    I tried everything here http://support.apple.com/kb/TS1365 and tried removing and re-installing the RAM and nothing changed.
    Short of trying to re-install the RAM again I have no idea what to do. I won't be able to visit a Genius until after the 5th so any ideas/suggestions?

    see http://support.apple.com/kb/HT2674 and http://support.apple.com/kb/HT2341 for some information about beeps and flashes.
    In your case, though, jinnes, the slow blinks suggest that the computer is simply refusing to wake up from sleep.
    One possible, though unusual, cause of this can be if you are using the computer with it stacked on top of a macbook. In this case the magnet in the macbook underneath activates the Hall effect switch in the MBP, making the latter think the lid is closed, and preventing wakeup. I've had this happen to me and it is quite unnerving at the time! Simply moving the MBP will fix it. see http://support.apple.com/kb/TS2917
    The same effect could be generated by proximity to other magnets.
    It is also possible , if this is not your situation, that the hall effect switch in your MBP is actually defective. It may be worth trying simply opening and closing the lid a few times to see if you can get it to activate.
    Cheers
    Rod

  • SPA3000, sos blink code, no access

    Hello, I cannot access my SPA3000.
    The status LED blinks 3 fast, 2 slow, 3 fast, which from everywhere I've read means corrupted firmware.  Other forums allude to a recovery tool that can be
    used to reflash the firmware.
    I cannot access it by phone (no **** etc for reset), I cannot access it by
    web browser (connection times out).
    I ran nmap and found that it is getting an IP address, and I can ping the device,
    but only ports 68 (dhcp) and 4810 are open.  No tcp ports are open so no way
    to access the device by web.
    SPA-3000 
    HW Version: 3.0.0 (5102)
    SW Version: 2.0.13 (GWg)
    Any help would be greatly appreciated.  I'm hoping it is as easy as emailing
    linksys/cisco for the recovery tool, but I can't seem to find an email address
    and the online help system did not work for me.
    Thanks for your help and thoughts.

    try this links SPA3000 recovery

  • Hp laser jet 1018 not printing. cable/power are connected and have paper. no blinking lights.

    What do I do next? The spool File is started and the print spool temporarily displays the file in the printer spool box but nothing is happening on the printer. It's not even trying to print

    Did you resolve this?  I an having the same problem (on my Windows 7 laptop)

  • HP officejet j4680 all-in-one paper jam issue

    I bought HP officejet j4680 all-in-one two months ago from a dealer. Now it keeps telling me a "paper jam" which doesn't exist. I tried everything from the troubleshooting in HP website. The jam light just keeps blinking. Now I am so frustrated with this product.

    @CAGY, take a look at this HP link on how to clear a jam.
    Please mark the post that solves your issue as "Accept as Solution".
    If my answer was helpful click the “Thumbs Up" on the left to say “Thanks”!
    I am not a HP employee.

  • Paper feed out of sync on HP PSC 1510 All-in-One Printer Scanner

    Paper feed out of sync on HP PSC 1510 All-in-One(SN MY59SD224W0498). Goes to flashing orange light. With Vista Home Premium 32-bit, 6.0.6002 Service Pack 2 Build 6002. USB connection to HP Pavilion GU658AA-ABU a6250.uk .
    After cleaning ink drip tray including removing & refitting the small panel in the base towards the rear RHS of the  printer and also Super Glueing a small wedge of timber to close split shaft bearing for rear print feed rollers - looking from rear with clean out door removed this is at the LHS where the cogs are - paper feed is out of sync. When turned on with paper in feed tray printer draws in paper until about 2" (5cm) of paper protrudes from delivery slot & then stops. Paper jam is indicated by flashing orange light. On pressing Cancel/Resume, paper is expelled & another sheet taken in with the same results. Have turned off & restarted. Have moved cartridge cleaner tray right from front to rear & tested & then brought it right forward again & tested. Have turned off & unplugged power & USB & restarted after more than 30 minutes. Have uninstalled driver & downloaded & installed anew. Downloaded & ran the HP Print Diagnostic Utility. All to no avail. Any suggestions anyone?

    Hi there nobster,
    This article should cover the blinking light. However, I suspect the printer requires servicing.
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • False Paper Jam on HP Officejet Pro 8000

    I am getting a paper jam (misfeed) message, but there is no paper jam. The power and the resume lights are both blinking. I have checked everything about the printer, but no paper jam. I push the resume button to turn off the blinking light. I can then force feed paper, the rollers will catch the paper and  feed it through half way but then both lights will start blinking again. If I push the resume button again, the paper will feed the rest of the way through. So there is no paper jam in the path.
    I removed the dulplexer and checked inside; nothing.  I open the top of the printer and there is nothing blocking the path of the carriage. I can't print a test page. I have followed all of the steps in the HP document to solve the problem, but can't fix the problem. My warranty ran out last week. Is there a fix to this problem?
    If this problem has been solved, please contact me.

    This might offer some help, check the section on Power light and Resume light, including the hard power reset:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01628597&cc=us&dlc=en&lc=en&product=3762364&tmp...
    007OHMSS
    I was a support engineer for HP.
    If the advice resolved the situation, please mark it as a solution. Thank you.

  • I have a hp f380 all in one printer all 3 lights are blinking

    I followed all the instructions on hp.com nothing has worked. I just bought new cartridges for the printer it has aligned 3 times already but won't copy or scan because the ink cartridge light, paper jam and power lights are all blinking at the same time what can i do? I have windows vista all the software for the printer is already installed and I use it for my compaq presario laptop. The usb cord was disconnected for 60 seconds. I also powered it off removed and re-inserted the ink cartridges and even the paper the lights still blink. And checked for paperjams  
    Message Edited by Nesh on 02-11-2009 11:02 PM

    Try working through this support document. it walks through resetting the power module and testing it. It also includes a video which is very helpful.
    The HP Product Won't Turn On or Respond
    If this does not resolve your issue post back so we can get it fixed for you.
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

Maybe you are looking for

  • MSI K8N Diamond Posting but then keyboard not working or frezzing

    To save me writing it all again here is what i sent to MSI tch support. Would like to add to what i have wrote below that when it freezes i get a sound like fast clicks coming from the case speaker . Oh and also have tried removing battery for a whil

  • FireWire slows from 60MB/s to 16MB/s when switching from Tiger to Leopard

    Hi Folks This is a big problem for FCP users so I'm posting this here (as well as on the Leopard discussion board). After upgrading to Leopard I noticed a substantial drop in FireWire disk performance. While in Tiger I could sustain 60MB/s against a

  • Google Mail Notifier Has message:  "Can't sign in. See Preferences.  Fetch

    My Google Mail Notifier not working. Has message: "Can't sign in.  See Preferences.  Fetch -2" I have no idea what this means.    When I go to Preferences,  there is nothing about "Fetch -2". If anyone can help me,  I would appreciate it.   I am a be

  • Output Drop by RESOLVE_VPLS_REFLECTION_FILTER_DROP_CNT

    Hello! How i can determine a reason of output drops? >sh inter tenGigE 0/0/0/6               Fri Nov  2 15:26:05.358 MSK TenGigE0/0/0/6 is up, line protocol is up   Interface state transitions: 11   Hardware is TenGigE, address is 108c.cf1d.f326 (bia

  • Complaining to Ofcom and demanding compensation fr...

    Where to begin with this catalogue of incompetence from BT? I placed an order for a new telephone line and broadband for the new house I was moving in to. The order was placed on May 17 with a wait for connection until June 1. The new house had an ex