How do I run two routers but maintain my backups

I had purchased a new router prior to purchasing my time capsule and want to use my new router as my main router but have my time capsule running as well to maintain my backups.  The only way to do that is to have both routers with the same IP address.  Is that correct?

Simple.. bridge the TC.
With just the TC connected to a computer .. if running lion you need the real utility before you start.. not 6.0
http://support.apple.com/kb/DL1482
Go to manual setup.
Go to internet tab.
Go to connection sharing.
Select off bridge mode.
Update the TC
Plug it back to the main router with ethernet. You can use any port in the TC although wan is traditional.. it is now joined to LAN .. the TC becomes a non router and will take an IP from the main router. Check in the airport utility you can still access it.
Finally you need to sort out wireless.. Turn off wireless if you like.. or sort channels manually. But anything connecting to the TC will actually be connected to the main router and get IP and routing via that.

Similar Messages

  • How do i run two threads with different sleep times?

    How do i run two threads with different sleep times?
    Ive got thread A and thread B, they both update a jpanel.
    They both start when i press the start button.
    However thread A updates every 250ms and thread B updates every 1000ms. i cant just run them both at 250ms becuase this will mess it up.
    So for every four runs of thread A i want thread b to only be run once
    Does anyone know how to do this?
    Thanks, Ant...

    ok, ive done it but now i cant stop it!
    ive added buttons to start and stop, the start button works but the stop button doesnt. why doesnt "t.stop();" work?
        public void run() {
            while(t == Thread.currentThread()) {
                System.out.println("No " + t.getName());
                if (t.getName().equals("1")){
                    try {
                        t.sleep(1000); // in milliseconds
                    } catch (InterruptedException e) {}
                } else{
                    try {
                        t.sleep(250); // in milliseconds
                    } catch (InterruptedException e) {}
        }

  • HT1347 How do I run two libraries from one computer?

    How do I run two libraries from one computer? One library is on the computer's hard drive, the second library is on an external hard drive. The computer that had the external hard drive crashed and I need to fix the iTunes library on it. How can I do this without corrupting the library on my internal hard drive?

    Launch iTunes with the Shift key held down and either create a new library or choose the one on the external drive. Any rented movies downloaded from another computer won't play.
    (81212)

  • How can I run two independant LabView applications from the same computer, without taking a performance hit?

    I have two identical, but independant test stations, both feeding data back to a Data Acquisition Computer running LabView 6.1. Everything is duplicated at the computer as well, with two E-series multifunction I/O cards (one for each test station) and two instances of the same LabView program for acquiring and analysing the data. The DAQ computer has a Celeron processor w/ 850Mhz clock and 512MB memory, and is running on Windows NT.
    I have noticed that when I run both the applications simultaneously, I take a substantial performance hit in terms of processing speed (as opposed to running just one program). Why does this happen and how can I prevent it? (In t
    his particular case, it may be possible to combine both the tests into one program since they are identical, but independant, simultaneous control of two different LabView programs is a concept I need to prove out).
    Thanks in advance for any tips, hints and spoon feedings (!)....

    Depending on your application, you may or may not be able to improve things.
    Firstly, each task requires CPU time, so a certain performance difference is guaranteed. Making sure you have a "wait until ms" in every while loop helps in all but the most CPU intensive programs.
    Secondly, if you are
    1) streaming data to disk
    2) Acquiring lots of data over the PCI bus
    3) Sending lots of data o ver the network
    you can have bottlenecks elsewhere than in your program (limited Disk, PCI or Network bandwidth).
    Avoid also displaying data which doesn`t need to be displayed. An array indicator which only shows one element still needs a lot of processing time if the array itself is large.... Best is to set the indicator invisible if this is the case.
    I think
    it would be best if you could give some more information about the amount of data being acquired, processed and sent. Then maybe it will be more obvious where you can optimise things. If you are running W2000, try activating the task manager while the program(s) are sunning to see where the bottleneck is.
    Shane
    Using LV 6.1 and 8.2.1 on W2k (SP4) and WXP (SP2)

  • How can I run two DML in one FORALL statement?

    How can I run 1) select 2) update in one FORALL for each item as below?
    OPEN FXCUR;
      LOOP
            FETCH FXCUR BULK COLLECT INTO v_ims_trde_oids LIMIT 1000;
            EXIT  WHEN v_ims_trde_oids.COUNT() = 0;
         FORALL i IN v_ims_trde_oids.FIRST .. v_ims_trde_oids.LAST     
              SELECT EXTRACTVALUE(XMLTYPE(CNTNT),'/InboundGTMXML/ProcessingIndicators/ClientCLSEligibleIndicator')        INTO v_cls_ind
              FROM IMS_TOMS_MSGE  WHERE ims_trde_oid = v_ims_trde_oids(i);
             IF v_cls_ind      IS NOT NULL THEN
                      v_cls_ind       := '~2136|S|'||v_cls_ind||'|';
             UPDATE ims_alctn_hstry  SET CHNGE_DATA_1   =concat(CHNGE_DATA_1,v_cls_ind)
             WHERE ims_trde_hstry_id = (select max(ims_trde_hstry_id) from ims_alctn_hstry where ims_trde_oid=v_ims_trde_oids(i));
             DBMS_OUTPUT.PUT_LINE('Trade oid: '||v_ims_trde_oids(i)||'   CLS Eligible Indicator: '||v_cls_ind);
          END IF;
      END LOOP;
      CLOSE FXCUR;Your help will be appreciated.
    Thanks
    Edited by: PhoenixBai on Aug 6, 2010 6:05 PM

    I came through this forum while googling on the issue of 'using two DML's in one FORALL statement.
    Thanks for all the useful information guys.
    I need to extend this functionality a bit.
    My present scenario is as follows:
    FOR I in 1..collection1.count Loop
         BEGIN
              insert into tab1(col1)
              values collection1(I) ;
         EXCEPTION
              WHEN OTHERS THEN
              RAISE_APPLICATION_ERROR('ERROR AT'||collection1(I));
         END;
         BEGIN
              UPDATE tab2
              SET col1 = collection1(I);
         EXCEPTION
              WHEN OTHERS THEN
              RAISE_APPLICATION_ERROR('ERROR AT'||collection1(I));
         END;
    commit;
    END LOOP;
    I need to use the FORALL functionality in this scenario, but without using the SAVE EXCEPTIONS clause keeping in mind that I also need to get value in the
    collection that led to the error.Also, the each INSERT statement has to be followed by an UPDATE and then the cycle goes on(Hence I cannot use 2 FORALL statements for INSERT and UPDATE coz then all the INSERT will be performed at once and similarly the UPDATEs). So I created something like this:
    DECLARE
    l_stmt varchar2(1000);
    BEGIN
    l_stmt := 'BEGIN '||
              'insert into tab1(col1) '||
              'values collection1(I) ; '||
         'EXCEPTION '||
              'WHEN OTHERS THEN '||
              'RAISE_APPLICATION_ERROR(''ERROR AT''|| :1); '||
         'END; '||
         'BEGIN '||
              'UPDATE tab2 '||
              'SET col1 = :1; '||
         'EXCEPTION '||
              'WHEN OTHERS THEN '||
              'RAISE_APPLICATION_ERROR(''ERROR AT''|| :1); '||
         'END;'
    FORALL I in 1..collection1.count
    EXECUTE IMMEDIATE l_stmt USING Collection1(SQL%BULK_EXCEPTIONS(1).ERROR_INDEX);
    END;
    Will this approach work? Or is there any better aproach to this? I am trying to avoid the traditional FOR ..LOOP to achieve better performance of query

  • How could i run two file of same url mapping

    hi,
    i am very new to servlet technolgy using weblogic 8.1 server. i want to know that can i provide same url mapping to two diffrent servlet files.if yes then how could i run files seperatly - i want to know that what should i pass in the address bar.
    my directory structure is
    C:\ ----------> helloWeb
    |
    |----------->WEB-INF
    |------------>classes
    and suppose i have two files in helloWeb directry
    1) ajitAutomobile.java
    2) ajitAutomobileUpdate.java
    i m using "http://localhost:7001/helloWeb/man" in my address bar but it executes only the first servlet added.
    plz help me
    im confused...
    thanx for any answer

    You can not map two servlets to the same url because the servlet container will just send the request to the first url mapping it can match. What you can do is map one servlet that will check the request for a parameter that flags the request and if it finds it will forward the request to the next servlet.

  • How can I run two different versions of Firefox, the latest does not work with an important site I need to use?

    With the latest version of Firefox I cannot send "Quick Mails" to my students using the college's ANGEL system. I had to uninstall it and go to an earlier version. I prefer the newest rev.
    Any way to run two different versions. It does not have to be simultaniously. Seems to be a problem on both my Mac and XP systems.
    Thanks,
    Kim

    Currently I don't think there is a way to run two version of firefox at the same time. But you can install Firefox Beta or Aurora instead (which is build for future release for firefox) and help test it! Here's the link:
    http://www.mozilla.org/en-US/firefox/channel/

  • How do I run two full screen applications on separate screens?

    I have two screens for my MacBook Pro with Lion; the laptop screen and a stock screen hooked up by a VGA cable. Currently, when I use a full screen application, my second screen just changes to the grey fabric pattern. How do I run a full-screen application on each screen?

    Hi Jared,
    Connect/turn on the external monitor. Open System Preferences on your MBP > Displays. There should be two windows, one for the external monitor and one for the MBP. Click on the window for the external monitor. Click on the Arrangement tab. Uncheck the box for Mirror Displays. This willallow you to set each display to its own resolution. On the external display, click on the pref window for the external monitor display setting. Click on Display. Set the resolution to what you want. On the MBP's display, click on the pref window for the MBP's display and set the resolution to whatever you want. You'll be in what's called "extended desktop mode." You'll have to move the "pointer" all the way to the edge of one display to get it to go onto the other display. Open whatever you want, and drag it to the extended monitor. Set it to full screen. Open another whatever on the MBP's display and set it to full screen. You should be full screen on both displays.

  • How do I run two tomcat on one webserver

    How Do I configure webserver to run two tomcat server.
    thanks

    make sure u have two seperate directories for tomcat.
    then edit one of the server.xml file and change the following port numbers 8080,8443,8009,8082 and 8081 to which ever port number u wish the second tomcat to run.
    For load balancing and fail safe settings, u will have to look at the documentation as this involves further settings to take care of
    good luck

  • How do i transpose midi notes but maintain the key?

    I'd like to take a midi track and shift it up to the next mode (ie, ii instead of I) while following the key. What is the simplest way to do this? In other words, I'd like to "transpose" but maintain the key. C-E-G would become D-F-A (not D-F#-A, as just transposing would do). I see there's a "Diatonic Insert" for the Score mode, but I'd like "Diatonic Edit" or something like that.
    Using Logic 8.
    Thanks in advance for any tips, and I apologize if I missed this answer somewhere in the forum already.

    I found a contentious discussion from Feb 2010 that seemed to suggest this was not an available feature ("and why would you need it??!! Just play it again!!"). But if anyone knows a way, I'd be grateful.
    For now I've just ended up dragging the notes up and then manually adjusting in Score mode the errant notes that went out of key.

  • How can I retain two versions of my iPad backup in iTunes?

    HI,
    When I backup my iPad on iTunes, the previous backup is automatically deleted and a new back is created.
    How can I retain two versions of my iPad bacup in iTunes?
    Thanks, Ramani

    Backup the device. Immediately restore the backup. The restored backup is now archived and a new rolling backup set is created. You can repeat as needed and clear older backups from Edit > Preferences > Devices.
    tt2

  • JDev9i-Beta;How could I run two JSP applications in Jdev enviroment at the same time?

    Hi,
    I have two JSP applications located on different directories. I wanted to run both applications at the same time in Jdev enviroment. But the second one failed.
    More info:
    I successfully ran Application1, then minimized the browser and ran Application2, then again minimized the second browser. After I maximized the first browser(Application1) and tried to go thro pages, I received page not found. Because Jdev sat up the Class Path for the newer application(Application2) and looks for pages there. I believe thats why I could not run both at the same time. How could I get around of this?

    hi,
    can you provide more details on this. Are these jsp files part of the same project or different projects. I can not duplicate this issue. Please provide us more information.
    Thank you

  • Run two reports but generate one output

    I have developed two reports, one is a detail (portrait style) and another is a summary report (landscape). Now I need to provide an option that will run both the reports but display the output in one document (the document should contain both the detail and summary content).
    Ideal scenario would be to call the report one after another but capture the output in one file but I am not sure whether it's possible in Reports.
    Any help is highly appreciated. Thanks in advance.
    Sundar

    Hi DC,
    Thanks for your reply. I tried to figure out how to create a new section by looking at the document i have (building reports), it directs me to create a new report block and treat it as a new report. Is that what you meant? I tried to follow the report wizard but it's only displaying the summary total columns not the details (i know it's difficult to troubleshoot without viewing the report). I just want to make sure i am at the right place creating a new report section.
    Again thanks for your reply.
    Sundar

  • Networking help needed, I want to run two routers on my lag

    So I have this problem (https://discussions.apple.com/message/17067869#17067869) and I am thinking now that maybe there is something in the broadband company supplied router that is amiss. As I have plenty of other routers lying aroung, how do I do this: Just use the ISP router to get internet into the room, and use another router to set up the LAN network, so I can isolate the problem somewhat. Is this possible? Turn off the DHCP server in main router, and turn it on in the second router, while plugging the second router into one of the ports on the main?  Not too sure about that thx.
    coocoo

    Had a look at your other thread and really could not make any sense out of it.
    If you can put the ISP supply Modem/Router combo box into Bridge Ethernet mode then you can connect your own router as the LAN DHCP server and default gateway to the internet.
    You don't say what the ISP router is, whether you are on a DSL or cable or some other type of connection from your ISP. You also don't state whether the modem you have from your ISP is really a router or just a modem.
    In the states most Cable ISPs use bridged modems handing out a public IP to the piece of equipment connected to it. These are single Ethernet port boxes and will usually assign just one public IP address. But there are some ISPs, and services like for businesses, that do allow multiple public IPs.
    What is the IP address of one of your computers? If it is in the 192.168 or 10. or 172.x range then you have a modem router combo box. It the IP is in any other range then that box from your ISP is just a bridge modem and you need to install a router.
    If the IP is in one of the ranges I listed above then it is more then likely a combo box of modem and router. In that event adding a second router will cause what is called Double Natting. which isn't a good thing to do.
    Also some Cable ISP in the states have gone to installing there own router somewhere in the loop of connections and they do hand out private IPs through a bridge modem. That way they don't have to buy more public IP address space, which is running out.
    So a little more info is needed.

  • How do I run two Apple IDs with one computer and sync music content?

    I have a single PC which I have added all of the music to one my log in. My wife and I have Iphones and I want to run separate accounts for itunes, but sync music content from the single source to both phones. Whenever I have tried to do this in the past, it starts to sync all app to both phones. I tried to therefore have separate log ins on the pc itself, but when I have tried this, the music content does not update on my wifes itunes library, after I have added music to mine (ie imported a CD), even though I have linked my wife's music library for itunes purposes to my music folder (hopefully that makes sense!!). Can anyone help as this is driving me mad, otherwise I will just have to run from my account and delete all of my wifes apps etc whenever I sync my phone, and vice versa.
    Thanks!!!
    Jeremy

    Is the following document of any help with that?
    [How to use multiple iPods with one computer|http://support.apple.com/kb/HT1495]

Maybe you are looking for