How many amperes can be powered by the USB Port

I'm looking for a new USB Powered HD (in the 160-250 GB range) that my AirPort Extreme's USB port can power.
My current LaCie USB Powered Mobile Harddisk ( http://www.lacie.com/uk/products/product.htm?pid=10651 ) can't get enough power from the AirPort Extreme (n) to run.
QUESTIONS:
How many amperes does the AirPort USB port "support"?
Do you have a USB powered HD that works fine with the APEBS (2.5" in the 160-250 GB Range)? - Make and model please?
Thanks in advance.

Hi Allan,
You mention you wish to use the older SKU  p/n SRW224G4P, which has been refreshed and  replaced by  SRW224G4P-K9-NA
.Here is the EOL notice fior the SKU you detailed;
http://www.cisco.com/en/US/prod/collateral/switches/ps5718/ps9967/end_of_life_notice_c51-626527.html
Why not avail yourself of the newer 300 series switch such as  SRW224G4P-K9-NA .
I am using beta code version 1.1 code on my unit.
Version 1.1  will be Generally Available  at the end of this month ( fingers crossed),  and Version 1.1 firmware supports CDP.
See datasheet for the new product, generations ahead of the old p/n that you mentioned.;
http://www.cisco.com/en/US/prod/collateral/switches/ps5718/ps10898/data_sheet_c78-610061.html
Anyway the  AP1240AG  isn't a pre-standard device but supports standards based  802.3af, hence i really see no benefit in using the older product..
Datasheet on the AP1240AG correlates with your data, maximum power drawn is 12.4watts.
Allan,  your calulations seem spot on.
SRW224G4P-K9-NA as well as the older switch you mention both support aPOE  power budget of 180W.
I personally like to be slightly conservative in terms of loading the switch up..  I prefer  to spread the load between switches if i can.
But the GUI of the 300 series switch will show the power drawn by the devices.
The device circled below is a AP1142 with wireless-a turned off.
Have fun,
regards Dave

Similar Messages

  • How many threads can be running at the same time

    Hi!!
    Dows anyone knows how many Threads can be running at the same time in the JVM.
    I'm making a multi thread client-server app and I would like to know how much simultneous connections the JVM support. I'm using one Thread per connection.

    Hi, thanks to all for your answers.
    I think that I made the wrong question, as you said: "that means the number of threads currently created".
    I'm worry about this because my application is already online (It's a mail server -SMTP and POP3 server using ORACLE for the users database- ) and some other user post in the "multi-tread forum" that almost any JVM can only have 700 threads created at the same time, and I've never heard or read anything about this.
    what you mean with the stack space (memory??)
    I'm using the JavaWebServer 2.0 and a servlet to start the main Thread.
    Again Thanks to all for the answers but I think that the schapel answer is the one that solve my doubt...

  • How many times can you restore from the same backup?

    how many times can you restore from the same backup?

    As many times as you want till you delete or modify it.
    It's YOUR backup, a copy of all your stuff.
    Not some copyrighted, access controlled bunch of bytes representing a picture, a song or a movie, with a bunch of lawyers from the entertainment maff1a hellbent on restricting what you can do with it.

  • How many steps can be recorded in the History panel?

    In Photoshop, 20 steps can be recorded in the Histroy panel with the defult setting, and we can change the setting to record more or less steps by choosing "Edit> Preference".
    In Lightroom, how many steps can be recorded in the History panel with the defult setting? And how can we change the number of step to be recorded?

    I guess since the history is kept in the database (and not only in memory as with PS), there is not so much an issue in limiting them.
    Beat Gossweiler
    Switzerland

  • How many entries can we put in the select options

    Hi all,
    As per  my requirement I am trying to store the data in the select-option( s_kunnt)  as below
    select kunnr from kna1 into (l_kunnr) where
                and spart in p_spart.
      move 'I'         to s_kunnr-sign.
      move 'BT'        to s_kunnr-option.
      move l_kunnr to s_kunnr-low.
      move l_kunnr  to s_kunnr-high.
      append s_kunnr.
    endselect.
    Using s_kunnr in the select statement to fetch the data.
    When the customer numbers are more than 1800 in the s_kunnr, select statment going to the dump. Is number of entries in the select options are restricted for some count( around 1800)?.
    How many entries can we put in the select options?
    Thanks
    Regards
    Raj.

    Firstly, there is an error in your code. You should do the following instead:
    move 'I' to s_kunnr-sign.
    move 'EQ' to s_kunnr-option.
    move l_kunnr to s_kunnr-low.
    append s_kunnr.
    To answer your original question, the limit depends on the field width you are using in the ranges. If the field width is small, you can have thousands of entries in the range table.
    The limitation is in the length of the SQL statement string generated by the ABAP OPEN SQL engine. With the way I defined it above, the statement would have WHERE KUNNR IN ( 'value1', 'value2', 'value3'). With way you defined it, it would have WHERE KUNNR BETWEEN 'value1' and 'value1' and KUNNR BETWEEN 'value2' and 'value2'.
    When the range table is so large that it results in a short dump, you should look into FOR ALL ENTRIES option of SQL.

  • How many photos can i import to the catalog?  Can i hook up many hard drive(s)?

    how many photos can i import to the catalog?  Can i hook up many hard drive(s)?@

    Bernd Alheit wrote:
    So long as their is enough space for the catalog.
    If your hard disk is that short of space, then you have more serious problems anyway

  • How many columns can be used in the SELECT Statment

    Hi all,
    How many columns can be used in the SELECT statement?
    Ex: SELECT x1,x2,....xn FROM <table_name>;
    Thanks,
    GowriShankar.N

    Let me join ;-)
    SQL> select * from v$version;
    BANNER
    Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production
    PL/SQL Release 9.2.0.6.0 - Production
    CORE    9.2.0.6.0       Production
    TNS for Linux: Version 9.2.0.6.0 - Production
    NLSRTL Version 9.2.0.6.0 - Production
    SQL> DECLARE
      2  l_sql varchar2(32000);
      3  begin
      4  l_sql := 'CREATE TABLE T(';
      5  for i in 1..999 loop
      6  l_sql := l_sql ||'C'||i||' NUMBER,
      7  ';
      8  end loop;
      9  l_sql := l_sql||'C1000 NUMBER)';
    10  EXECUTE IMMEDIATE l_sql;
    11  end;
    12  /
    PL/SQL procedure successfully completed.
    SQL> select count(*) from cols where table_name = 'T';
      COUNT(*)
          1000
    SQL> insert into t(c1) values(1);
    1 row created.
    SQL> select *
      2  from t t1,t t2;
            C1         C2         C3         C4         C5         C6         C7         C8         C9       
    ...   snipped
    C991        C992       C993       C994       C995       C996       C997       C998       C999         C1         C2         C3       C4         C5         C6         C7         C8         C9        C10       
    ...   snipped
    C990       C991       C992       C993    C994        C995       C996       C997       C998       C999
    ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ----------          1
                                                                                                                                        1
    SQL>
    SQL> select count(*) from (
      2  select * from t t1,t t2)
      3  ;
    select * from t t1,t t2)
    ERROR at line 2:
    ORA-01792: maximum number of columns in a table or view is 1000Obviously, inline view is obliged the same restrictions as a view, but select list is not constrained.
    Best regards
    Maxim

  • PSE8 : How many pictures can I keep in the same catalog ?

    PSE8 : How many pictures can I keep in the same catalog ?

    PSE Catalogs of 180,000 images have been reported that are running well. Optimize your catalog regularly.

  • How many computers can be written into the access list?

    I remember the old ABS allowed pretty many computers, much over the normal amount of 20. Does anybody know how many computers can be written into the new ABSE n?

    Please be aware that MAC address filtering (access control) provides no security at all. All of the wireless traffic is sent unencrypted allowing anyone monitoring it to read your data.
    MAC address filtering ONLY prevents unlisted MAC addresses from connecting to your base station. However the MAC addresses are broadcast between connected clients and the base station. Therefore anyone monitoring your wireless traffic can learn the allowed MAC addresses. After they learn an allowed MAC address, they can clone that address and connect to your base station.

  • Known limit for how many characters can be entered in the To field when adding People and Groups ?

    I am running MOSS 2007 SP1. I browse to site settings > People and groups and a group which has more than 60 members. I select all > Click Actions > Email Users. Nothing happens. I select less users, new outlook window comes up as it should. I am running outlook 2007. I first thought that the limit was 50 users, but different user selections let me select 51 users as well. I then concentrated on the character limit and I noticed that there were about 1580 characters in the To field when I selected 50/51 users.
    Is there a known limit in sharepoint/outlook client for this function on how many characters can be entered in the To field?

    Hello Amar,
    This is a by-design behavior, not from SharePoint side, but Internet Explorer. The limitation by the 2083 characters in IE for the Max URL length is described in the following KB article:
    (KB208427) Maximum URL length is 2,083 characters in Internet Explorer
    http://support.microsoft.com/default.aspx?scid=kb;EN-US;208427
    As a workaround, you may need to divide the list up and not send all the email at the same time. Hope it helps!
    Best Regards,
    Lionel

  • How many sites can be build on the trail version

    how many sites can be build on the trail version ?

    i build 2 to play with, one site is working 100 % the other one give me the error, both of them is uploaded with Win CSP, i can not load it through Muse,
    Site Not Published 
    The site you are looking for has not been published
    If you are the owner of the site, you can fix this message by publishing your site to this address.

  • How many shows can I DVR at the same time?

    I just signed up for FiOS triple play with preferred HD, premium stations, 75/75 internet and phone. I was watching a show the other night and DVR'd 2 shows - got a message saying I couldn't do that. How many shows can I DVR at the same time? Can I still watch a live show while DVR's recording?
    This is SO frustrating!

    Every regular DVR has 2 tuners It can recordp to 2 shows at a time.
    If both tuners are in use,, then you can't watch anything else.
    Want to record more, get more DVRs or upgrade to Quantum.
    Lowere level has 6 tuners. THey support remote TVs and recording.
    THere agin, you can get combination of channels being watched and recorded up to 6.
    Need even more, upgrade to higher level and have 12 tuners to share.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.

  • HT204370 How many times can I down load the same movie to my iPhone so I don't have to store on my iPhone ?

    How many times can I download a purchased movie to my iPhone, so i can delete and re-download each time I want to watch it?

    It will depend upon whether you are in a country where films can be re-downloaded (it's not possible to re-download them in all countries, and even where they can be, not all film studios have agreed to it), and if the film remains in the store (film studios occasionally remove them) - if you can re-download it then you can do so as many times as you like.
    But it's probably better to keep a copy on a your computer and on a backup so that you can re-sync it to your iPhone as/when you want it.

  • With 16GB, how many songs can be stored in the IPAD mini?

    My IPad mini has 16GB, how many songs can be stored?

    thank you both very much for your quick response to my question, when i purchased the IPad, they told me at Verizon that about 2000 songs could be stored in the 16GB, not that I plan on having that many songs downloaded. Again thank you both very much, I appreciale the help.

  • How many alarms can you set on the Nano 6th gen?

    I'm looking for a watch that can hold 12 alarms for medicals purposes. I was thinking that maybe the 6th generation nano might do the job as there aren't many options in actual watches.  Does anyone know how many it can hold?

    Your iPod does not support alarms. That only works with iPod Touch.

Maybe you are looking for

  • New Unibody MBP won't boot from DVD or external drive, just loops

    Hey We bought a new Unibody MBP on Monday, and loaned it to our CTO for a presentation. Having got it back from him now I wanted to nuke the installation and put a fresh copy of leopard on it, so I dropped the DVD in the drive, powered down, and boot

  • Sender JMS Adapter

    Hi, I am using a sender JMS adapter. Transport Protocol i have given as "Access JMS Provider with JNDI". In the field "JNDI Server Address" i have to give the server:port. Here i am not sure which port to give. Is it the P4 port i.e. 5XX04 or the J2E

  • Is movie metadata changes written to the file in iTunes 10.1?

    Hello. I'm putting together a bunch of home videos for my parents (made in iMovie) for Christmas and I'm using iTunes 10.1 to populate the metadata (genre, movie title, comments, etc.) - is this data written to the file or is it stored in an iTunes D

  • Printing the white in an image

    Is there a way to change the content of a picture file so that the white in the image prints as white as oppose to being an absence of colour? I have a good photo stylus printer. I would like to be able to print black and white drawings onto manila.

  • AE CS4 LICENSE EXPIRED

    Hello. I was using the AE CS4 Trial version, it expired and I unistalled. Then I bought AE CS4 from adobe.com, installed it, entered my new serial number and when I tried to open it, a message showed up. It says: "License Expired, Licensing for this