How to use TimeCapsule as second router?!?!?!!?!?  PLEASE HELP

i already have a linksys wireless router that is in use and connected to one of my computers. i want to make a second network in my home with my TC. how do i do this? Will this cause the speed of my bandwidth to decrease? would u recommend doing this? what can i do so i can use my TC and linksys as the router? should i make my TC be a "secondary router"? if so, how do i do this? PLEASE HELP!!!

i think my linksys router model name is WRT54GL. and i know that it will provide an 802.11g wireless network.
That is correct, this particular router is only capable of providing either an 802.11b or 802.11g wireless network.
but how do i "reconfigure the TC as a bridge"?
To set up the TC as a bridge, either connect to the TC's wireless network or temporarily connect your computer directly (using an Ethernet cable) to one of the LAN port of the TC, and then, using the AirPort Utility, change this setting:
Internet - Internet Connection tab
o Connection Sharing: Off (Bridge Mode)
o Click Update to apply the new settings.
how do i "reconfigure the TC for 802.11n"?
Again, you would use the AirPort Utility in Manual Setup:
AirPort - Wireless
o Radio Mode: <Choose either the 802.11n only (5 GHz) or 802.11n only (2.4 GHz) option.>
and how do i choose which computers to be "n" clients?
Well, only computers that are capable of supporting 802.11n would qualify as "n" clients ... so these would be my recommendation. Primarily you would to use "n" clients where bandwidth performance is a high requirement ... like when streaming audio or video. (300+ Mbps vs. 54 Mbps, respectively for 802.11n & 802.11g).

Similar Messages

  • I recently bought a dbx hardware compressor and am not quite sure how to use it in logic express 9. I hav a focusrite saffire 6 usb audio interface and am not dont how to use it in logic. Please help???

    I recently bought a dbx hardware compressor and am not quite sure how to use it in logic express 9. I hav a focusrite saffire 6 usb audio interface and am not dont how to use it in logic. Please help???

    MUYconfundido wrote:
    Pancenter,
    Thanks for the response, but I do not have a midi interface. I am using a midi to usb connector cable, thus bypassing the need for a Midi interface.
    The Mac reads the USB cable as a midi device, but not the keyboard that I am trying to use as a controller. I have tried it with my korg sp 300 and with my Nord Electro 2.
    Thoughts?
    Thanks,
    Tristan
    Tristan...
    This is what you have, correct?
    http://www.alesis.com/usbmidicable
    This from Alesis..
    "The AudioLink Series USB cable receives and outputs MIDI signal thanks to its internal interface. The USB-MIDI Cable connects plug-and-play to your Mac or PC for an all-in-one USB-MIDI solution."
    Notice, -internal interface-. What you have is a simple USB MIDI Interface. Most MIDI interfaces are USB.
    My point is (was), MIDI OUT of the Korg goes to the connector marked MIDI IN on the Alesis, those new to MIDI often get this wrong.
    pancenter-

  • Nokia 8800 how to use it with iSync? please help me

    Hi there! my iSync say's that my nOkia 8800 is not supported even in the support isync page says that it works with, how do i install the isync in my 8800 black? thanks a lot for your help

    hello, if you suspect you have adware on your system, please perform all these steps:
    # [[Reset Firefox – easily fix most problems|reset firefox]] (this will keep your bookmarks and passwords)
    # afterwards go to the firefox menu ≡ > addons > extensions and in case there are still extensions listed there, disable them.
    # finally run a full scan of your system with different security tools like the [http://www.malwarebytes.org/products/malwarebytes_free free version of malwarebytes] and [http://www.bleepingcomputer.com/download/adwcleaner/ adwcleaner] to make sure that adware isn't present in other places of your system as well.
    [[Troubleshoot Firefox issues caused by malware]]

  • How to use vector in JTable? Please help......

    Hi there
    I can use JTable using object array to manupulate data but it has a limitation of defining number of rows of the array. Alternatively i want to use vector. Anyone help me how to convert to using vector.
    Regards.
    mortoza, Dhaka

    hi,
    you could either use javax.swing.table.DefaultTableModel because this class uses a java.util.Vector for data storage or you could implements your own TableModel by extending javax.swing.table.AbstractTableModel.
    best regards, Michael

  • I am unable to download my PDF. It is asking for my adobe livecycle rights management credentials. I have no clue what that is. I am using a PC windows7. Please help me.

    I am unable to download my PDF. It is asking for my adobe livecycle rights management credentials. I have no clue what that is. I am using a PC windows7. Please help me.

    Downloading from where?  How exactly are you downloading?
    Can you post a screenshot of that message: https://forums.adobe.com/thread/1070933

  • How do I get PBS again?  Please help!!!

    I was able to get PBS when I first got Apple TV after putting in a code, but my cable company recently changed their channel lineup, and I can no longer get PBS on Apple TV.  I used to get PBS on channel 314 on my TV, but after speaking with my cable company, I now get it on channel 198, but I can't get anything at PBS on Apple TV. All I get when I go there is the "downloading circle" and nothing happens.  The cable company can't help, and I've written to PBS several times with no reply.  I thought maybe I could get a different code and start over, but I don't know how to do that.  Can anyone help, please.  PBS is one
    of the main reasons I bought Apple TV.  Thanks. 

    I don't know who vaszandrew is, but I (diamond2277) wrote How do I get PBS again?  Please help!!! 
    It got printed and I lost my page so I started over again, and the one above with my question showed             (dated May 2, 9:56 am) as if it were an answer to vasndrew.
    After I wrote, it occurred to me that maybe if I disconnect my Apple TV and reconnect it, I will get PBS, and it worked.  Now I don't need an answer.  Thanks to anyone who was going to answer!  I have to remember my usual answer to technical problems, UNPLUG, AND START AGAIN.

  • How to program this in java? Please help

    How to program this in java?
    please explain steps, it has to come out like this:
    example
    input: 3b1w3b
    output:
    BBBWBBB

    import java.io.*;
    public class Test {
    static java.io.PrintStream o = java.lang.System.out;
    public static void main(String[] args)throws Exception {      
         BufferedReader BR = new BufferedReader(new InputStreamReader(System.in));
         System.out.print("Enter plot for printing: ");
         String s = BR.readLine();
         char[] cs = s.toLowerCase().toCharArray();
         for(int i=0, j=0; i < cs.length-0x1; i+=0x2, j=0)
              while(j++ < (int)(cs[i]-0x30))
                   o.print((char)(cs[i+0x1]-0x20));
    I tried changeing it to this so I can enter my own string, but I want to change it some more so that it can enter multiple input separated by space, so that it can form a sort of picture line by line. I tried using tolkenizer but I get errors. I dont know how to use tolkenizer properly can anyone please TEACH. you dont have to tell how or give me the code if you dont want to. yes I know Im a noob and I dont know java as good as everyone here, If everyone thinks I don't deserve help then DON'T help, I'm just trying to learn programming

  • My ebay toolbar and the ebay logo that was in my system tray at the bottom have both disappeared when I installed FireFox??? How do I get them back? Please help.

    my ebay toolbar and the ebay logo that was in my system tray at the bottom have both disappeared when I installed FireFox??? How do I get them back? Please help.

    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In Library Manager it's the FIle -> Rebuild command)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. 
    Regards
    TD 

  • My sis. tryed to break my pass and now it says to conect to itunes  but i captured so many photos from the last sync  how to sync without deleting this photos please help

    my sis. tryed to break my pass and now it says to conect to itunes  but i captured so many photos from the last sync  how to sync without deleting this photos please help

    egzoni 123 wrote:
    my sis. tryed to break my pass and now it says to conect to itunes  but i captured so many photos from the last sync  how to sync without deleting this photos please help
    If you Restore using last computer you synced to the password will be removed and you can restore the last backup on your computer, which includes your camera roll.
    If you enabled Photo Stream in iCloud your photos are in Photo Stream.
    If you had installed one of the many apps that can upload photos to a photo sharing site and had used it you will have your photos.
    If you have done none of these things you are out of luck. The phone comes with many tools to preserve content, but you have to use them.

  • I can't install Lion because Macintosh HD can not use it as a startvolume. please help!

    I can't install Lion because Macintosh HD can not use it as a startvolume. please help!
    greetings from Austria ;D

    http://www.apple.com/support/lion/installrecovery/
    And this link for How to create Lion Recovery Drive just went MIA / "404"
    http://support.apple.com/kb/HT4713
    http://support.apple.com/kb/HT4718
    You can also use the OS X Lion installer from the Mac App Store to create an external bootable drive, complete with a Recovery HD partition. See this article for more details. This approach will, at least, create a bootable drive with Recovery HD which you can carry with you in case you need to use Internet Restore or make use of the other utilities Recovery HD provides.
    http://support.apple.com/kb/HT4649

  • After upgraded to Mavericks my macBook Pro my Apple TV sound crash each ten seconds. Please help me!

    After upgraded to Mavericks my macBook Pro my Apple TV sound crash each ten seconds. Please help me!

    Hi Aparana.rahul,
    The beeps during the startup of your MacBook Pro indicate that it may need to be serviced. See this article for further information -
    OS X Mavericks: If you hear beeps when your computer starts up
    http://support.apple.com/kb/PH14206
    Note that while the article title says it is for computers running Mac OS X 10.9 Mavericks, the same information applies to other versions.
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • ITunes wont open for me. it keeps saying "the Disc "untitled playlist" cannot be read. An unknown error occurred (-69)." don't know how to get it to work. Please help

    iTunes wont open for me. it keeps saying "the Disc "untitled playlist" cannot be read. An unknown error occurred (-69)." don't know how to get it to work. Please help

    It is likely a hardware failure
    http://support.apple.com/kb/TS3694?viewlocale=en_US#error1

  • When iPhone is connected to PC, it shows in itunes but Autoplay does not open for me to copy photos. I tried the Control Panel, changing Autoplay settings but no use. I use a Windows Vista. Please help! All my little ones' pictures are on my iPhone 3GS

    When iPhone is connected to PC, it shows in itunes but Autoplay does not open for me to copy photos. I tried the Control Panel, changing Autoplay settings but no use. I use a Windows Vista. Please help! All my little ones' pictures are on my iPhone 3GS.
    I tried hard reset on my iPhone. I tried restarting laptop and iPhone. I tried a different laptop. I tried removing driver and reinstalling from Device Manager but did not find a driver other than "Apple Mobile Device USB Driver" under "Universal Serial Bus controllers" which I heard shouldn't be uninstalled.
    Anything I haven't tried?
    HELP!

    A bit confused by your statement
    bcboarder wrote:
    . I do not understand why the music is clearly on the Ipod but wont reconize it anywhere.
    Are you seeing your music listed in the iPod screen, or in Win explorer as in your earlier post?
    I can see all the songs in my Edrive>al's Ipod> Ipod Control> Music folder.
    A corrupted iPod database, will report zero music used, and have your music size reported as others, so you wont see the music in the iPod screen. Sorry, I thought there was some hope for you with iPodAccess, in recovery of the corrupted iPod database with your ratings.
    You can try to borrow and  use the Mac Disk Utility ->First Aid ->Repair.
    Of course, if your iPod Hardisk is in a bad state, from the Disk Diagnostic report, then all my suggestion are futile.

  • TS4605 Hi, I was working in WORD on a file containing huge data. My machine just hung up one day while working and now I seem to have lost the file how do I get it back.  Please HELP me.

    Hi, I was working in WORD on a file containing huge data. My machine just hung up one day while working and now I seem to have lost the file how do I get it back.  Please HELP me.

    Well, iCloud has nothing to do with this.
    Do you have the built-in backup function Time Machine running on your Mac?
    See: http://support.apple.com/kb/ht1427

  • Until recently I was able to send images in the body of my Yahoo emails. Now, I am getting the message "This message has been truncated", and the email does not go through. I do not have this problem using IE. Could you please help? Thank you.

    Until recently I was able to send images in the body of my Yahoo emails. Now, I am getting the message "This message has been truncated", and the email does not go through. I do not have this problem using IE. Could you please help? Thank you.

    Try this -> http://support.apple.com/kb/TA38632?viewlocale=en_US

Maybe you are looking for