How set up Capsule for first backup using ethernet

Friends,
I thought I had this solved, but my problem is the following:
1. For speed use ethernet in initial backup (2-3 times faster than by using airport)
2. Connect ethernet cable from LAN port at Capsule (TC) to laptop
3. Enable ethernet and disable airport.
well well
I apparently go wrong by using Airport Utility (AU) for this. Everything goes fine. I see the TC as a shared device in the finder, but as soon as I close down the Airport connection for doing the ethernet backup the whole TC disappears. If I don't close down the Airport I see the backup starting and I se the TC in the finder but I suspect the backup does not use the ethernet cable.
Where do I go wrong??
regards,
pyry

Welcome to the discussions!
You don't need to use AirPort Utility. Do not turn off your wireless from there.
Simply +turn off the wireless on your computer+ by clicking on the fan shaped AirPort icon at the top of your screen.
Connect an ethernet cable from your computer to one of the LAN ports on the Time Capsule
Start the backup
When the backup is complete, you can turn the wireless back on at your computer and disconnect the ethernet cable from your computer and the Time Capsule.

Similar Messages

  • Backing up macbook pro to time capsule for first time via ethernet

    I set up a new 2T Time Capsule / Airport, let it run overnight, only about half way backed up.  I deleted first backup file, and want to do the backup via ethernet.  How do I do this?

    ....and want to do the backup via ethernet.  How do I do this?
    This will depend on how you have the Time Capsule connected to your network.
    If you have it connected from your modem or modem/router using an Ethernet cable at the present time, you are already set. Just connect another spare Ethernet cable from one of the LAN <-> ports on the Time Capsule to your Mac....and be sure to turn off the wireless on the Mac before you start the backup.
    Normally, about 25-30 GB of data will transfer per hour this way, so if your Mac has say, 60 GB of data loaded, the backup should take approximately 2-3 hours. Once the backup is complete, disconnect the Ethernet cable and turn the wireless back on at the Mac.
    However, if you have the TIme Capsule configured to connect to your network using wireless only, then the Ethernet ports are not enabled on the Time Capsule in this type of setup.  It is not possible to backup using an Ethernet connection unless you are willing to reconfigure the Time Capsule for the backup...and then reconfigure it again to get it back to its current setup.

  • Computer keeps Configuring and setting up for first time use

    I have a toshiba A505-S6980 that has been working fine for a couple years.  Recently I had performance issues and suspected virus, spyware so I did a recovery with the original discs I made when I first got the computer.  Four of the six discs reloaded fine.  It did not ask for the last two discs "Environment 64 bit and Applications and Drives.  I also have a System Repair disc.  After loading the four recovery discs the computer now keeps recycling between preparing for first time use, configuring system, reboot and then back to preparing for first time use,etc.  I think I'm close to getting this, but need a last bit of help.
    Thanks

    It's been a couple days since you posted this problem. Did you get anywhere, or are you still stuck in that loop? If it's still stuck, you may just want to perform the recovery again.
    - Peter

  • HT1178 I'm setting up airport for first time. I'm getting error no DNS servers help

    I'm setting up airport for first time. Getting error no DNS servers. What is DNS server and how do I fix this?

    DNS server is that translation from a website address in words meaningful to us.. eg www.google.com to an actual number that computers can use. Without DNS the internet may work but you would have to know the ipv4 address of every site you want to visit.
    Whenever you don't know the meaning of a term just type wiki plus the term in google search.
    http://en.wikipedia.org/wiki/Domain_Name_System
    We cannot really help fix the problem without knowing a good deal more info.
    So
    What modem do you have.. make and model may be a help?
    Who is your ISP.. may be helpful??
    Is the modem also a router?
    How is the TC connected to the modem?
    How is the computer connected to the TC?
    A primary example of where you get this problem is a pure cable modem.. ie has no router in it.
    When you replace an existing computer or router that is plugged into it, with the TC, requires that you power cycle the modem. In some cases the off time is 5min.. for a lot of services, it needs to be off 20min.. and for some even longer.. maybe an hour or overnight.
    But it is not worth getting into specifics without knowing the rest of the system.

  • How do I calibrate a battery backup using OS X 10.8?

    If I connect a APC Power-Saving Back-UPS Pro 1000, Part Number: BR1000G to my Mac computer using a USB cable, running Mac OS X 10.8, how do I calibrate the battery backup using the UPS service that is built into the operating system?

    I contacted APC Technical Support at 800-555-2725 and they told me that they have discontinued making the PowerChute Personal Edition software for the Mac and the OS X UPS feature also doesn’t do calibration. They said if I wanted to get the most accurate reading on how much runtime my APC battery backup would provide they recommended that I do a manual calibration. They also recommended that I do a manual calibration once a month or so to help improve battery life.

  • How  to write code for font family using swing?

    how to write code for font family using swing?
    i tried this code.but i got only font styles.but i need font family.observ this code
    import java.awt.*;
    import java.awt.event.*;
    public class fontSelect extends java.awt.Dialog implements AdjustmentListener, ItemListener, TextListener, ActionListener {
    public Font selectedFont; //to get result
    public boolean isSelected = false;
    public Color selectedBackground, selectedForeground;
         public fontSelect(Frame parent, boolean modal) {
              super(parent, modal);
         String fntName[] = getToolkit().getFontList();
    GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
    String[] names = ge.getAvailableFontFamilyNames();
              //{{INIT_CONTROLS
              setLayout(null);
              setVisible(false);
    //setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              setSize(insets().left + insets().right + 380,insets().top + insets().bottom + 282);
              setBackground(java.awt.Color.lightGray);
    fontList = new java.awt.Choice();
              //fontList = new java.awt.List(0,false);
              add(fontList);
              fontList.setBounds(insets().left +25,insets().top + 50,137,144);
              //label1 = new java.awt.Label("Example:-");
              //label1.setBounds(insets().left + 220,insets().top + 36,84,30);
              //add(label1);
              exampleText = new java.awt.TextField();
              //exampleText.setText("sample string ");
              //exampleText.setBounds(insets().left + 40,insets().top + 50,84,21);
              //add(exampleText);
              label2 = new java.awt.Label("Font Family:-");
              label2.setBounds(insets().left + 25,insets().top + 30,70,19);
              add(label2);
              isBold = new java.awt.Checkbox("Bold");
              isBold.setBounds(insets().left + 320,insets().top + 90,60,18);
              isBold.setFont(new Font("Times New Roman", Font.BOLD, 12));
              add(isBold);
              isItalic = new java.awt.Checkbox("Italic");
              isItalic.setBounds(insets().left + 250,insets().top + 90,48,17);
              isItalic.setFont(new Font("Times New Roman", Font.ITALIC, 12));
              add(isItalic);
              showFont = new java.awt.Label("samplestring ",Label.CENTER);
              showFont.setBounds(insets().left + 240,insets().top +50,120,30);
              showFont.setBackground(java.awt.Color.white);
              add(showFont);
    label11 = new java.awt.Label("Size:-");
              label11.setBounds(insets().left + 290,insets().top + 120,70,19);
              add(label11);
              fontSize = new java.awt.Choice();
    add(fontSize);
              //label11 = new java.awt.Label("Example string");
              fontSize.setBounds(insets().left + 290,insets().top + 140,60,23);
              fontSize.setBackground(java.awt.Color.white);
              btnSelect = new java.awt.Button();
              btnSelect.setLabel("Select");
              btnSelect.setBounds(insets().left + 280,insets().top + 190,87,24);
              add(btnSelect);
              btnCancel = new java.awt.Button();
              btnCancel.setLabel("Cancel");
              btnCancel.setBounds(insets().left + 280,insets().top + 230,91,24);
              add(btnCancel);
              label3 = new java.awt.Label("Background:-");
              label3.setBounds(insets().left + 24,insets().top + 90,94,18);
              add(label3);
              rBackground = new java.awt.Scrollbar(Scrollbar.HORIZONTAL,255,0,0,255);
              rBackground.setBounds(insets().left + 24,insets().top +110 ,197,21);
              add(rBackground);
              gBackground = new java.awt.Scrollbar(Scrollbar.HORIZONTAL,255,0,0,255);
              gBackground.setBounds(insets().left + 24,insets().top + 135,197,21);
              add(gBackground);
              bBackground = new java.awt.Scrollbar(Scrollbar.HORIZONTAL,255,0,0,255);
              bBackground.setBounds(insets().left + 24,insets().top + 160,197,21);
              add(bBackground);
              label4 = new java.awt.Label("R");
              label4.setBounds(insets().left + 12,insets().top + 110,12,18);
              label4.setFont(new Font("Times New Roman", Font.BOLD, 12));
              label4.setForeground(java.awt.Color.red);
              add(label4);
              label5 = new java.awt.Label("G");
              label5.setBounds(insets().left + 12,insets().top + 135,12,18);
              label5.setFont(new Font("Times New Roman", Font.BOLD, 12));
              label5.setForeground(new Color(-16744448));
              add(label5);
              label6 = new java.awt.Label("B");
              label6.setBounds(insets().left + 12,insets().top + 160,12,18);
              label6.setFont(new Font("Times New Roman", Font.BOLD, 12));
              label6.setForeground(java.awt.Color.blue);
              add(label6);
              rBackValue = new java.awt.Label("255");
              rBackValue.setBounds(insets().left + 225,insets().top + 110,24,12);
              rBackValue.setFont(new Font("Times New Roman", Font.BOLD, 12));
              rBackValue.setForeground(java.awt.Color.red);
              add(rBackValue);
              gBackValue = new java.awt.Label("255");
              gBackValue.setBounds(insets().left + 225,insets().top + 135,24,12);
              gBackValue.setFont(new Font("Times New Roman", Font.BOLD, 12));
              gBackValue.setForeground(new Color(-16744384));
              add(gBackValue);
              bBackValue = new java.awt.Label("255");
              bBackValue.setBounds(insets().left + 225,insets().top + 160,24,12);
              bBackValue.setFont(new Font("Times New Roman", Font.BOLD, 12));
              bBackValue.setForeground(java.awt.Color.blue);
              add(bBackValue);
              label7 = new java.awt.Label("Foreground:-");
              label7.setBounds(insets().left + 20,insets().top + 185,94,18);
              add(label7);
              rForeground = new java.awt.Scrollbar(Scrollbar.HORIZONTAL,0,0,0,255);
              rForeground.setBounds(insets().left + 20,insets().top + 205,197,21);
              add(rForeground);
              gForeground = new java.awt.Scrollbar(Scrollbar.HORIZONTAL,0,0,0,255);
              gForeground.setBounds(insets().left + 20,insets().top + 230,197,21);
              add(gForeground);
              bForeground = new java.awt.Scrollbar(Scrollbar.HORIZONTAL,0,0,0,255);
              bForeground.setBounds(insets().left + 20,insets().top + 255,197,21);
              add(bForeground);
              label8 = new java.awt.Label("R");
              label8.setBounds(insets().left + 10,insets().top + 205,12,18);
              label8.setFont(new Font("Times New Roman", Font.BOLD, 12));
              label8.setForeground(java.awt.Color.red);
              add(label8);
              label9 = new java.awt.Label("G");
              label9.setBounds(insets().left + 10,insets().top + 230,12,18);
              label9.setFont(new Font("Times New Roman", Font.BOLD, 12));
              label9.setForeground(new Color(-16744448));
              add(label9);
              label10 = new java.awt.Label("B");
              label10.setBounds(insets().left + 10,insets().top + 255,12,18);
              label10.setFont(new Font("Times New Roman", Font.BOLD, 12));
              label10.setForeground(java.awt.Color.blue);
              add(label10);
              rForeValue = new java.awt.Label("255");
              rForeValue.setBounds(insets().left + 220,insets().top + 205,24,12);
              rForeValue.setFont(new Font("Times New Roman", Font.BOLD, 12));
              rForeValue.setForeground(java.awt.Color.red);
              add(rForeValue);
              gForeValue = new java.awt.Label("255");
              gForeValue.setBounds(insets().left + 220,insets().top + 230,24,12);
              gForeValue.setFont(new Font("Times New Roman", Font.BOLD, 12));
              gForeValue.setForeground(new Color(-16744384));
              add(gForeValue);
              bForeValue = new java.awt.Label("255");
              bForeValue.setBounds(insets().left + 220,insets().top + 255,24,12);
              bForeValue.setFont(new Font("Times New Roman", Font.BOLD, 12));
              bForeValue.setForeground(java.awt.Color.blue);
              add(bForeValue);
              setTitle("Choosing font");
              //{{REGISTER_LISTENERS
              exampleText.addTextListener(this);
              btnSelect.addActionListener(this);
              btnCancel.addActionListener(this);
              isBold.addItemListener(this);
              fontList.addItemListener(this);
              isItalic.addItemListener(this);
              fontSize.addItemListener(this);
              rBackground.addAdjustmentListener(this);
              gBackground.addAdjustmentListener(this);
              bBackground.addAdjustmentListener(this);
              rForeground.addAdjustmentListener(this);
              gForeground.addAdjustmentListener(this);
              bForeground.addAdjustmentListener(this);
    for (int i = 0; i < (int)fntName.length; i++)
    fontList.addItem(fntName);
              showFont.setFont(new Font(fntName[0], Font.PLAIN, 12));
    // GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
    //String[] names = ge.getAvailableFontFamilyNames();
    for ( int i=0; i<names.length; i++ )
    System.out.println( names[i] );
              selectedBackground = showFont.getBackground();
              selectedForeground = showFont.getForeground();
              int i = 8;
              do {
                   fontSize.addItem(""+i);
                   if (i<=30) i+=2;
                   else if (i<=70) i+=4;
                   else i+=8;
              } while (i<150);
              try {
                   fontSize.select(2);
              } catch (IllegalArgumentException e) { }
         //{{DECLARE_CONTROLS
         //java.awt.List fontList;
    java.awt.Label label11;
         java.awt.Label label1;
         java.awt.TextField exampleText;
         java.awt.Label label2;
         java.awt.Checkbox isBold;
         java.awt.Checkbox isItalic;
         java.awt.Label showFont;
         java.awt.Choice fontSize;
    java.awt.Choice fontList;
         java.awt.Button btnSelect;
         java.awt.Button btnCancel;
         java.awt.Label label3;
         java.awt.Scrollbar rBackground;
         java.awt.Scrollbar gBackground;
         java.awt.Scrollbar bBackground;
         java.awt.Label label4;
         java.awt.Label label5;
         java.awt.Label label6;
         java.awt.Label rBackValue;
         java.awt.Label gBackValue;
         java.awt.Label bBackValue;
         java.awt.Label label7;
         java.awt.Scrollbar rForeground;
         java.awt.Scrollbar gForeground;
         java.awt.Scrollbar bForeground;
         java.awt.Label label8;
         java.awt.Label label9;
         java.awt.Label label10;
         java.awt.Label rForeValue;
         java.awt.Label gForeValue;
         java.awt.Label bForeValue;
    private Font constructFont() {
    int l;
    try {
    l = Integer.parseInt(fontSize.getSelectedItem());
    } catch (NumberFormatException e) {l = 12;}
    selectedFont = new Font(fontList.getItem(fontList.getSelectedIndex()>=0?fontList.getSelectedIndex():0 ), (isBold.getState()?Font.BOLD:0)+(isItalic.getState()?Font.ITALIC:0), l);
    selectedBackground = new Color(rBackground.getValue(), gBackground.getValue(), bBackground.getValue());
    selectedForeground = new Color(rForeground.getValue(), gForeground.getValue(), bForeground.getValue());
    return (selectedFont);
         public void textValueChanged(java.awt.event.TextEvent event) {
              Object object = event.getSource();
              if (object == exampleText) showFont.setText(exampleText.getText());
         public void actionPerformed(java.awt.event.ActionEvent event) {
              Object object = event.getSource();
              if (object == btnSelect) {
    isSelected = true;
    selectedFont = constructFont();
         dispose();
    } else if (object == btnCancel) {
         selectedFont = null;
    selectedBackground = null;
    selectedForeground = null;
    dispose();
         public void itemStateChanged(java.awt.event.ItemEvent event) {
              Object object = event.getSource();
              if (object == isBold) showFont.setFont(constructFont());
              else if (object == fontList) showFont.setFont(constructFont());
              else if (object == isItalic) showFont.setFont(constructFont());
              else if (object == fontSize) showFont.setFont(constructFont());
         public void adjustmentValueChanged(java.awt.event.AdjustmentEvent event)
              Object object = event.getSource();
    constructFont();
    showFont.setBackground(new Color(rBackground.getValue(), gBackground.getValue(), bBackground.getValue()));
    showFont.setForeground(new Color(rForeground.getValue(), gForeground.getValue(), bForeground.getValue()));
    if (object == rBackground) rBackValue.setText(""+rBackground.getValue());
              else if (object == gBackground) gBackValue.setText(""+gBackground.getValue());
              else if (object == bBackground) bBackValue.setText(""+bBackground.getValue());
              else if (object == rForeground) rForeValue.setText(""+rForeground.getValue());
              else if (object == gForeground) gForeValue.setText(""+gForeground.getValue());
              else if (object == bForeground) bForeValue.setText(""+bForeground.getValue());

    Okay, that's better. It would have been nice if the code was formatted, and if there was about 20% of that code. (Your example could have been just one JLabel and nothing else, for example.)
    Anyway, now that you've posted that code, what is your question about it? I see you are calling a "getAvailableFontFamilyNames" method; do you have a question about that? If so, what is the question?

  • SQL Server Management Studio - Configuring the environment for first time use

    Hi
    I have recently switched my local 'My Documents' folder location to a network drive that I 'make available off line' to allow on-line/off-line work and synchronisation when I am working in and out of the office.
    When I load my SQL Server Management Studio 2005 I frequently get 'Microsoft SQL Server Management Studio is configuring the environment for first time use'.
    Management Studio  them loads and I can continue without problem.
    I am guessing it is trying to make reference to some settings file. Any ideas? I wonder if I can change/move these settings elsewhere to a local drive?
    Thanks

    Hi,
    There is bug report of this issue:
    http://connect.microsoft.com/SQLServer/feedback/details/126364/configuring-enviroment-for-the-first-time-every-time-in-ms-sql-server-management-express
    "SQL Server Management Studio Express saves the settings for the user in ...\Documents and Settings\<User Profile>\Local Settings\Application Data\Microsoft\Microsoft SQL Server\90\Tools\ShellSEM
    and in ...\Documents and Settings\<user profile>\Application Data\Microsoft\Microsoft SQL Server\90\Tools\ShellSEM
    if any of these files are not available or unusable, SSMSE will generate new ones."
    Hope this helps.
    BR,
    JoukoK

  • X230 - Setup Is Preparing Your Computer For First Time Use

    Dear all, 
    I just received my X230 bought on Ebay and as I first turned on the computer, Windows was frozen and showed "Setup Is Preparing Your Computer For First Time Use" for hours (I guess its a whole day). Since I do not have any recovery media provided, does anyone has alternative solution? 
    Thanks in advance!

    Thanks! It took me a whole day to figure out what happened and I ended up format the whole drive and reinstall the windows. Yes, you are right, X230 is a good machine and acutally I was thinking to puchase X240 since there is kind of back to school program that you can purchase X240 at a deep discount price. After so many bad comments I chose X230 instead for: 
    1. Physical Trackpad button (which is extremely important as I ONLY use trackpoint) 
    2. 2 ram slots 
    3. normal voltage CPU
    I am surfing the net with X230 and I am so happy I bought this.

  • First Backup with Ethernet but Second.....?????

    As advised, I did my first backup via ethernet connection.
    So I went to airport utility and configured everything for the ethernet cable.
    However, when I want my subsequent backups to be done wirelessly.
    How do I do this?
    I tried just removing the ethernet cable but of course the time capsule couldn't be read. So I plugged it back in and I went back to airport utility and tried to change the setting so that it would join my current wireless connection. I got a green light on both the airport utility window and on my tc, however airport utility was unable to read the new configuration. I got the error "error occurred while reading the configuration" and can't get past that.
    Can someone please tell me how they switched from ethernet to wireless? Am I doing something wrong?
    Thank you.

    I found a tip from the boards. Never mind, thank you all.

  • How to configure Time Capsule for Automatic Backup AND HARD DRIVE USE

    I tried to configure Time Capsule for back up and as a hard drive. I record music and need to copy the music myself onto an external hard drive for speed, so I want the TC to double as an external hard drive, and do the back up. I want to be able to open the TC as a hard drive, to open my songs from it. Can it do both?

    I finally figured it out. I am able to access my TC from the "shared folder." When I click on it, I get the "connection failed message." I failed to notice the login button in the upper right -- user error due to my Windows based education. The button is very subtle. Once I login, I can create folders and add content.
    I didn't see a partition option. Where is that? Just curious.
    Thanks!

  • How to setup Time Capsule for wireless backup only

    I have a new Time Capsule that I want to set up for wireless backups of both my Macbook Air (with Time Machine) and a Windows Vista laptop. I have an existing home wireless network with my Att/Uverse tv and internet service. I do not want to disturb that network/internet setup.
    How do I set up the time capsule to use it for wireless backup only? When I start the Airport utility setup, the first thing it asks is do I want to 1) set up new network, 2) replace existing router, or 3) join existing network.

    Thanks. That got me the green light and a message that everything was set up properly. It started it's first Time Machine backup and everything looked good for a while. But now I have a new problem.
    The backup failed twice. The first time it had a message that it could no longer find the time capsule, so I had to reset it and go thru the setup procedures again. Started backup again overnight, and this morning it tells me that it failed again. But this time I still have my green light, and the message is "a network problem may have interfered with the backup.
    I don't know what else to do with the setup to get it to work. Right now it has started backing up again on its own, so I'll leave it going one more time. (I should tell you that all of this is occurring on my Mac. I have not even started setting it up on the Vista machine. I want to make sure it works on the Mac first). Any advice from anyone who had the same problems with setup would be appreciated.

  • Use Time Capsule for local backup only

    Hi there,
    I think I can do what I need to but need some config assistance.  Here is my issue:
    I want to use a time capsule that is attached via ethernet cable to my MacBook Pro to backup via Time Machine but I do not  need the TC to be used for wireless access. 
    I have taken the 2TB TC to my office.  I have a full WiFi network there that I attach my Macbook to.  I have used the AirPort utility and told it to extend a wireless network for the TC.  I have given it the credentials for our office network.  It seems to be attached (DHCP address assigned) but the TC light keeps flashing yellow.
    I see the TC in Time Machine on my MacBook and it is doing an incremental backup (it's been about 2 weeks since the last one so it's big!).  However, it seems to be backing up over the office WiFi network and not the locally attached ethernet cable. 
    So do I need to just disable WiFi altogether on the TC?  If I do, it doesn't seem to make the Time Machine volume available to the my Mac.  When I go into my Mac's Network Preferences now,  and look at the physical ethernet port, it says "self assigned IP address" so I don't think the ethernet cable plugged into the TC is actually doing anything. 
    Can someone tell me how to correctly set the TC up to locally backup my MacBook through the Ethernet cable but let my MacBook use the company WiFi network for other network activities?  Thanks much in advance for the help!

    If your office network is created by non-apple routers, then the TC is working in join wireless mode and will turn off the ethernet ports.. in other words you have no connection at all by ethernet and it is irrelevant.
    To get this working you will need a pretty snazzy setup..
    So first and really important question.. since you are prepared to have something plugged into your MBP.. why not use a USB drive. It is much faster.. even USB2.. and if newer model with USB3 it will completely flatten any network drive. It is much more reliable.. Time Machine operates differently to local drives. And you can also use a program like CCC and create a bootable clone. This is on top of TM backup and well worth it.. A bootable clone will enable your computer to start even with a dead hard disk in a couple of minutes.. not days of sorting through TM.
    Anyhow.. To get TM to work to the TC in isolation
    1. Factory reset the TC.
    2. Do minimal setup of the TC.. it must stay in router mode but simply ignore errors of no internet connection.
    3. Here we get to the tricky bit. Open the network preferences and check the IP you get from the wireless office system.
    If it is 192.168.x.x for example all will be great. If you get 10.0.x.x or indeed any 10.x address tell me.
    The TC will have an IP 10.0.1.1 and will pass the computer 10.0.1.2
    What you need to do now is set that statically and change the gateway (router in applespeak) and DNS values.. In most computers you can leave them blank but I found the apple computers prefer you to fill them in so you should copy the values from the wireless connection.
    There is a longer discussion of it here.
    Can Time Capsule be set up as a second, local network?
    This is fairly old but the principles are the same albeit the utility is v5.
    If you cannot figure it out post back and I will figure out a v6 set of screenshots.
    What I will need to know is the values your wireless gets.. IP, subnet, router, and dns.

  • How do I set up my very first VPN using a BT Home ...

    Greetings!
    I would like to set up a VPN via my BT Home Hub.
    I've already set up a Windows 7 VPN server on my PC, and I can connect my Android devices successfully using my domestic wireless connection through the hub.
    Now I want to be able to connect to my VPN using any internet connection, anywhere.
    I'd like to find out what settings I need to set on my hub, and what settings I need to set on the Android device. I'm assuming – perhaps overoptimistically – that I won't need to do anything more with my Windows 7 VPN server.
    What I need to do on the hub is a complete mystery to me. Presumably I need to tell it to send VPN traffic straight to my PC, but I've no idea how to do this.
    As I've managed to connect my Android devices to the Windows VPN server this aspect of the process seems less mysterious to me. Presumably I need to tell them (the Android devices) the IP address of my hub (which, while it isn't technically static, is more than static enough for my needs). And presumably, if my hub has been persuaded to route VPN traffic to my PC, I can use the Windows account name and password to make the connection.
    If anyone can point me in the direction I need to go, or point me at where my questions have already been answered, I would be most grateful. I see a lot of VPN threads here, but they all seem to be about difficulties encountered on existing setups. I need to know how to create an existing setup first: then I'll know if I have issues that require further attention.
    Cheers!

    "You will need to set port forwarding on your home hub so that the incoming VPN connection is forwarded to the IP address of your PC. Your VPN range you have set on Windows 7, must not be on the same subnet as the home hub.
    If its using a standard VPN port, then there may already be a pre-defined application within the home hub that you can use, depending on which version of the home hub you are using. If not, then you will have to define one yourself.
    I think its port 1723 for Windows VPN."
    Thanks, Keith.
    Unfortunately my ignorance exceeds your expectations, so I have to ask more questions…
    How do I specify the incoming VPN connection in my home hub?
    What is the VPN range I must set on Windows 7, and how do I ensure it's not on the same subnet as my home hub? Is this something to do with the incoming IP addresses assignment settings for the TCP/IPv4 network component of the Windows 7 Incoming Connections' properties?
    How can I tell if "it" is using a standard VPN port? And does "it" refer to my home hub, my Windows Incoming Connection, or my Android device?
    When it comes to defining an application myself, how do I determine what port range needs to be translated, how do I determine what (port range?) it needs to be translated to, and how do I determine what the trigger port needs to be?
    Thanks.

  • Problems and Questions using Time capsule for first time...

    I recently purchased a new MBP 13" and time capsule. I hooked up time capsule to my router and made a backed up (slow) . I turned off Time Machine. Then, I hooked up my old mac via ethernet (faster, I learned), and mounted the sparsebundle via Shared in the Finder. I manually dragged and dropped the contents of my external harddrives(s) [connected to my old mac] to the sparsebundle. Thus;
    [Mounted sparsebundle]
    - Backups.backupdb
        - Mac Book Pro 13" <<< new mac time machine backups
              - 2012-11-25-5543   
              - 2012-11-23-3453   
              - 2012-11-19-6654   
              - 2012-11-17-3422 
    - My Media Backup           <<< Created new folder, Then dragged and dropped files from external disk
    - My Business Harddrive    <<< Created new folder, Then dragged and dropped files from external disk
    - My Personal Harddrive    <<< Created new folder, Then dragged and dropped files from external disk
    Questions 1; Are external files manually moved to Time capsule "safe?"
      ie. Will time capsule erase my files once it starts to run out of space? I read something about having to limit time machin'se sparsebundle size? Do I have to worry about this?
    Question 2: Or, Is my setup wrong? Is the following workflow sound for Time Capsule?
    I really want to consolidate all my data [external drives] to Time Capsule as my MBPro has limited space. As a avid amateur photographer, my drive fills up fast. Thus, I thought to use this as my workflow;
    WORKFLOW;
    - I take photos and transfer to my macbook pro. As the drive fills up, I edit and delete as necessary.
    - Old media projects [photos / films] are moved to "My Media Backup" folder on Time Capsule and deleted on my macbook pro.
    This way, the media files are still accessible through Time Machine, AND still accessible via shared folder on "My Media Backup". I am afraid that once the Time Capsule drive starts to fill up, files that are no longer on my computer will be overwritten in Time Machine, eventually.
    - I also will from time to time backup "My Media Backup" folder on Time Capsule to an External Harddrive and move offsite for added security.
    Problem 1; "resource temporarily unavailable"
    My old mac, connected via ethernet sees the sparsebundle and mounts no problem. But after manually dropping files, my new mac doesn't connect and I get the dreaded "resource temporarily unavailable"; though it's not temporary as I can never connect. So, I cannot access the backup [manually dropped] files on Time Capsule from my new mac via wireless. Note: My new MacBook Pro 13" retina does not have ethernet port [I did not think to purchase adapters], Nor does it have firewire port for my old external firelite drives. Thus I have a new mac, but I haven't used it hardly at all as I cannot access any of my old data (without emailing everything).
    Kind regards,

    You have basically destroyed the sparsebundle. This is just wrong. The sparsebundle is created by TM for its exclusive use.. what it will do to the files inside it is a mystery.. but you cannot now delete them.. you have permission to create and copy the files to the sparse bundle but not to delete them.
    M*rde. I was afraid of that. Makes sense that if you modify the sparsebundle file exterior of Time Machine; how could it know what changes were made? So, I've got to start over. (groan).
    *** NOTE TO APPLE: Make it clear what NOT to do to the sparsebundle in the setup instructions.
    It's too easy to simply mount the sparsebundle and drag and drop files I also wanted backed up. Apparently, this is a false method and can apparently ruin your sparsebundle and your valuable data.
    If you wanted to copy files to the TC you should have created a new disk image..
    http://pondini.org/TM/TCQ3.html
    Thanks! This, I think, does exactly what I was trying to do manually. I'll mark problem solved.
    Apple needs to address the gaping hole in the; functionality, ease of use, reliability, transparency of potential data loss if used incorrectly.
    *** APPLE: Add to Time Machine.app a management tool to better manage shared space of manual backups and time capsule sparsebundles. In any case, in the installation if a time capsule, give the TC drive a special id/permissions or something that does not allow drag and drop to a sparsebundle (if this does indeed corrupt the integrity of the sparsebundle).
    Since this could result in data loss, special attention needs to paid to;
       - Notifify the user of the potental of data loss
       - Prevent the casual and intermediate user of through special permissions or special disk id in the installation process (I've really no idea how it might work - I'll leave that up to Apple)
       - Create an interface to allow the user to do the tasks that everybody buys a the time machine for - back up data. No matter what the source; USB key, portable drive, temp space to organize large files. etc. An interface that won't let you screw up the sparsebundle like any idiot can do (me!)
    Kind regards,

  • Already have wireless network, need help for set up of time capsule for wired backup only.

    Hello all -
    I have a time capsule that plugs into wall and used a wireless network to back up computer.  It would always mess up internet afterwards so I would unplug the time capsule and reset internet until the next back up.  my time capsule now will not link into my computer. It just flashes amber.  Spoke with apple and was told to come on here and ask for help for setting up time capsule for a wired backup only and to mention that I have a wireless network.
    Hope any of this makes sense.
    Thank You!!

    Spoke with apple and was told to come on here and ask for help
    Really?  The paid professionals at Apple told you to post on a forum where users.....just like you....are trying to answer questions?  We'll try to help, though.
    For starters, please tell us the make and model of the modem/router that you have now that is providing your wireless network.

Maybe you are looking for