Can you run a wired router from the base station?

I have a Airport Extreme base station, I bought it about 6 months ago so it's not too old. My question is can you plug a wired switch, hub or router into it? I was told no at the apple store but I don't see why you could not. All I want to do is run a 8 port switch from the base station so I can connect my other wired comps to the net. Thanks!

My question is can you plug a wired switch, hub or router into it?
Yes, just connect it to the LAN port on the AirPort Extreme base station (AEBS).
I was told no at the apple store...
They gave you incorrect information.

Similar Messages

  • Is there a way to view earlier messages in a thread without going through each day? Also, can you make a photo album from the same text thread without going back to the beginning?

    Is there a way to view earlier messages in a thread without going through each day? Also, can you make a photo album from the same text thread without going back to the beginning?

    Turn Settings > General > Accessibility > Zoom to ON.

  • Can you run windows via bootcamp on the macbook pro retina display 2.5GHz dual-core Intel Core i5 512GB flash storage1

    Can you run windows via bootcamp on the macbook pro retina display 2.5GHz dual-core Intel Core i5 512GB flash storage1

    http://www.apple.com/support/bootcamp/

  • Can you crop an Facebook picture from the iPad?

    Can you crop an Facebook picture from the iPad?

    Yes you can crop pictures that are in the albums. I use the app PhotoForge2 It will let you do other editing things too. I creates a new doc so the original is undisturbed. I'm sure other apps will do similar things.

  • Can you have two detail lists from the basic list at the same time?

    Hi
    Can you have two detail lists from the basic list at the same time?
    If yes how and if no why?
    Thanks
    Venkat

    No   ... it is not   possible   of   2 detail  list at   one time   from the basic  list ...
    you can  increament   the SY-LSIND  .... But you can not   display  both the windows   at single time  ...
    it is  possible  to  display  2 Detail list  in ALV   ......  from one  basic  list   using  the  Blocked  list  concept    .
    Sample Program on BLOCK LISTS
    Report   zblock_list
    * Declarations for BLOCK ALV DISPLAY
    *--type pools
    TYPE-POOLS:slis.
    DATA:x_layout TYPE slis_layout_alv,
    t_field TYPE slis_t_fieldcat_alv,
    *--field catalog
    x_fldcat LIKE LINE OF t_field,
    *--to hold all the events
    t_events TYPE slis_t_event,
    x_events TYPE slis_alv_event,
    t_sort TYPE slis_t_sortinfo_alv,
    x_sort LIKE LINE OF t_sort ,
    *--Print Layout
    x_print_layout TYPE slis_print_alv.
    *----Macro to add field catalog.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    DEFINE add_catalog.
    clear x_fldcat.
    x_fldcat-fieldname = &1.
    x_fldcat-seltext_m = &2.
    x_fldcat-outputlen = &3.
    x_fldcat-tech = &4.
    x_fldcat-col_pos = &5.
    x_fldcat-no_zero = 'X'.
    x_fldcat-ddictxt = 'M'.
    x_fldcat-datatype = &6.
    x_fldcat-ddic_outputlen = &7.
    if &6 = 'N'.
    x_fldcat-lzero = 'X'.
    endif.
    *--build field catalog
    append x_fldcat to t_field.
    END-OF-DEFINITION.
    *----- data declerations.
    data: v_repid like sy-repid.
    data: begin of itab occurs 0,
    matnr like mara-matnr,
    ernam like mara-ernam,
    meins like mara-meins,
    end of itab.
    data: begin of jtab occurs 0,
    matnr like makt-matnr,
    maktx like makt-maktx,
    end of jtab.
    select matnr ernam meins
    up to 20 rows
    from mara
    into table itab.
    select matnr maktx
    up to 20 rows
    from makt
    into table jtab.
    v_repid = sy-repid.
    *DISPLAY alv
    * Initialize Block
    call function 'REUSE_ALV_BLOCK_LIST_INIT'
    exporting
    i_callback_program = v_repid.
    *Block 1:
    *INITIALIZE
    refresh t_field. clear t_field.
    refresh t_events.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    add_catalog:
    'MATNR' 'Material' '18' '' '1' 'C' '18',
    'ERNAM' 'Created By' '12' '' '2' 'C' '12',
    'MEINS' 'Unit' '5' '' '3' 'C' '3'.
    *--build table for events.
    x_events-form = 'TOP_OF_LIST1'.
    x_events-name = slis_ev_top_of_list.
    append x_events to t_events.
    call function 'REUSE_ALV_BLOCK_LIST_APPEND'
    exporting
    is_layout = x_layout
    it_fieldcat = t_field
    i_tabname = 'ITAB'
    it_events = t_events
    it_sort = t_sort
    tables
    t_outtab = itab
    exceptions
    program_error = 1
    maximum_of_appends_reached = 2
    others = 3.
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    *--BLOCK 2(SUMMARY REPORT)
    *INITIALIZE
    refresh t_field. clear t_field.
    refresh t_events.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    add_catalog:
    'MATNR' 'Material' '20' '' '1' 'C' '18',
    'MAKTX' 'Description' '40' '' '2' 'C' '40'.
    *--build table for events.
    x_events-form = 'TOP_OF_LIST2'.
    x_events-name = slis_ev_top_of_list.
    append x_events to t_events.
    * Append table block.
    call function 'REUSE_ALV_BLOCK_LIST_APPEND'
    exporting
    is_layout = x_layout
    it_fieldcat = t_field
    i_tabname = 'JTAB'
    it_events = t_events
    tables
    t_outtab = jtab
    exceptions
    program_error = 1
    maximum_of_appends_reached = 2
    others = 3.
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    *--CALL FM TO DISPLAY THE BLOCK REPORT.
    call function 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    * exporting
    * is_print = x_print_layout
    exceptions
    program_error = 1
    others = 2.
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    form top_of_list1.
    skip 1.
    write: 10 'List 1',
    /5 '--------------------'.
    skip 1.
    format reset.
    endform.
    form top_of_list2.
    skip 1.
    write: 10 'List 2',
    /5 '--------------------'.
    skip 1.
    format reset.
    endform.
    reward  points if it is  usefull ....
    Girish

  • HT4259 When a Netgear N 300 wireless router is the base station for my network, what steps do I take to add AirPort Express 802.11n as an network extender?

    When a Netgear N 300 wireless router is the base station for my network, what steps do I take to add AirPort Express 802.11n as an network extender?

    You don't have to do anything to the netgear.. the Express cannot wirelessly extend non-apple networks. You must plug the Express in by ethernet and create a new wireless network.. this can be the same name (SSID) and security as the netgear so it can become a roaming network.

  • I turned off Internet access, using airport timed access control.  Now, I can't turn it back on.  The base station can't be found.  Please help.

    I turned off Internet access, using airport timed access control.  Now, I can't turn it back on.  The base station can't be found.  Please help.

    Can you take a look at this one and offer your opinion please?
    https://discussions.apple.com/message/21889032#21889032

  • Can I run an HDMI monitor from the Firewire port of my MBP?

    This may be a strange one
    I am running a late 2011 17" MBP running Mavericks (latest version as of July 2014).
    Currently I have a 4TB external thunderbolt drive attached. There is no thru port.
    My challenge is, I want to connect an external HDMI monitor, but this MBP only has the one Thunderbolt port, being used by the external drive.
    My hope is, that somehow, I might be able to MacGyver  something using the Firewire port since I cannot afford another monitor with a TB through at the moment....Technically the cabling would be possible, albeit a bit freakish.
    Something like:
    Firewire cable out from MBP, plugged into a FW to Thunderbolt converter, thunderbolt converter tip plugged into a MiniDisplayPort to HDMI converter box (like the Monoprice  MMP-MDP2H01), then from there to the HDMI monitor.
    Would the MBP detect the monitor and route the video signal through the FW port accordingly?
    Looking forward to some expert advice and any zany workaround suggestions you all might have!
    Respect.

    The MDP to HDMI will work fine.
    Captfred

  • Can you create a To Do from the Subject line of an email?

    Does anyone know if it's possible to create a To Do from the subject line of an email in Mail?
    Here's what I'm trying to do. I open a mail message, then I can highlight any text in the body of the message. When I do this, the To Do button becomes enabled. If I highlight the subject of the message, the To Do button remains disabled.
    Is there any way of doing this aside from highlighting text, then changing the text?
    Thanks!

    Open Mail Help from the Help menu. One of the main topics listed is how to create to-dos. Click on it to see what you are able "to do."

  • Can you back track your iMessages from the past on your apple ID account

    can i back track my iMessages on my phone 4s from the past from my apple ID account?

    If you mean recover old messages, the short answer is no.
    You would have to do a full restore of a backup that contained the messages you wish to view again.    Basically, if you deleted the messages, they are gone.

  • How can you disable "set desktop picture" from the finder contextual menu

    I teach high school.  And MUST find a way to keep my students from changing their desktops.
    First I basically got rid of Firefox when it had that feature in the Tiger days.
    Then for Leopard I had to create dummy "locked" Safari Desktop Picture files for all my user accounts so the kids couldn't use Safari to set their desktop pictures.
    NOW I discover (maybe this was here before) Snow Leopard lets you change the desktop right from the Finder itself!  Just right click on any image file and the contextual menu  will give them the option to "set desktop picture".
    Come on Apple, every educator I know has complained about what a distraction and constant battle images are for students who use computers.  While not all students are inappropriate, quite a few are...meaning no one can be allowed the privilege.  Why is this such a huge battle to try and lock down?  Please allow Parental Controls or Server managed preferences to keep our students from being able to change their desktop pictures, ever, at all, from anywhere or any program.
    Does anyone know if this is even possible?

    The only way (I have found) to shut down using Safari's "Use Image as a Desktop Picture" feature is to create a bunch of blank documents that the users have no permission to change (i.e. set permission to only allow, say YOU to read it and no access to write to it for anyone)
    Create a number of these blank documents and rename them
    Safari Desktop Picture.jpg
    Safari Desktop Picture.tiff
    Safari Desktop Picture.gif
    Safari Desktop Picture.jpeg
    Safari Desktop Picture.png
    (you get the point....come up with as many .3 extensions of photo files that you can think of)
    Put these locked and unchangeable files into the following directory of each of your student accounts
    Macintosh HD/Users/~User Name/Library/Safari/
    What this does is create a bunch of dummy files that will "block" Safari (or the system or user) from trying to replace them.  Even though the right click comman will still be there, Safari will not be able to put the picture in the correct part of the system for it to be used as a Desktop Picture.

  • How can you erase a certain event from the iPad2 but keep it in iPhoto?

    I have two events that were split up by iPhoto when it synced to my iPad2. Collectively there re about 400 photos in the two events and they were split into over 50 separate events some labeled sequentially as 102IMPRT 103IMPRT....and so on, and otehrs labeled with the original event label.   I have not been able to regroup the events. they are still OK as two Events in iPhoto. My latest idea is to try to export the files from iPhoto without the geo and file name to a folder. Erase the events in iPhoto and then reimport them  into new events in iPhoto. Then sync to iPad.
    Before I did all that I wanted to remove the split events from my iPad. I tried to remove them from the iPad by unchecking the source events but checking all others in iTunes before syncing but that doesn't work probably because the pieces all have different names in the iPad. Maybe unchecking the events just doesn't sync them or make any changes..I thought that if you unchecke the events it would remove them. The real problem probably is that the spit events don't exist in iPhoto.
    I did remove them from the iPad once by checking sync with nothing by unchecking iPhoto in iTunes. But that removes the whole library of 10000+ photos. I did that and restored an old library from before the time the events were split (from Time Machine) then resynced with the newest iPhoto and it split the same two events again in pretty much the same way. I got nowhere and it took 4-5 hours to delete and reload the10,000 photos.
    Is there any way to remove events from the iPad that the crazy sync is creating, and don' t exist in your iPhoto library or on your iMac and iTunes without destroying the rest of the library of photos on the iPad??

    I tried syncing with the sources unchecked so no photos would sync. When it got done it erased all the library photos except the messed up events, they remain on the iPad. The Vacation photos are in two albums, one is called camera roll, and the other improted photos. None of the photos were taken with the iPad camera and should not show up in camera roll.
    At this point I am going to restore iPad2 to factory settings and sync from computer not backups and see what happens!

  • Can you run a different user on the managed server than the admin server?

    Under unix, can I run a Weblogic 7 managed instance as a different user than the
    admin server in the same domain? If not, any reference docs on BEAs site?

    That shouldnt pose a problem.
    anand
    In article <3f679e4d$[email protected]>, Frank wrote:
    >
    Under unix, can I run a Weblogic 7 managed instance as a different user than the
    admin server in the same domain? If not, any reference docs on BEAs site?

  • How can you open a new tab from the adress bar when located in an app tab ?

    When I am in an app tab and I write another url in the address bar, I would like it to be opened in a new tab, not in the app tab, so I don't ruin what I have.
    Is this possible?

    You can use "Opt + Return" or middle click the Go (Reload/Stop) button at the right end of the location bar.
    See "Open Address in New Tab" : <u>[[Keyboard shortcuts]]</u>

  • If messages are deleted from an itouch that is synced the same Apple ID and phone number, how can you get them to delete from the phone as well?

    how do I delete messages from both my itouch and my iphone

    You have to delete the messages from the individual device. If you delete messages on one device, messages on the other are not automatically deleted.

Maybe you are looking for

  • Problems installing itunes 11

    Whenever I try to install iTunes 11 it comes up 'the installer encountered errors before iTunes could be configured. Error occured during installation. Your system has not been modified. Please run installer again etc' I've been having problems with

  • How do I set up flickr to use photos in ATV screen saver

    I uploaded photos to Flickr, but ATV expects things to be in a specific place.

  • Connecting case mic plugs to the Audigy 2

    Ok, I have an Audigy 2 ZS. I want to get one of those little 3.5 bays for the front of my rig. the kind with the USB plugs and the firewire and a mic/headphones plug in 'em. I know I can hook the firewire and USB up, but I hate to have the 2 mini plu

  • JRE autoload with object

    I tried to call applet by <object> . It contained JRE autoload URL. Is it possible somehow to run applet without JRE installation by including something to JAR or WAR file or other way? If it is not possible how to change clsid to point to already in

  • Help, I did a bad bad thing

    well guys, I dropped my powerbook recently and the hard drive went bad. make the story short I tried to replace the hard drive and then broke the trackpad ribbon clamp that connects to the logic board ( never work on your computer when you are mad ).