We're Hiring!  
Toll Free US & Canada: 1(877) 946-4743   Worldwide: +1(415) 869-7444

Archive for the ‘GoGrid’ Category

Last week GoGrid officially launched our new European headquarters as well as opened our Amsterdam data center. We are already in the process of granting early access to select VIP GoGrid customers as well as opening up access to new GoGrid customers. If you are interested in using our new European data center, you can find out more information on the early access program in this blog post.

Amsterdam-globe

Podcast Interview with GoGrid

As part of the launch event, we were also sponsors of Cloud Expo 2012 which took place in London. During the show, GoGrid CMO Jeff Samuels and Senior Product Manager Rupert Tagnipes participated in a podcast interview with the MHF Tech Network.

MHF-Tech-Net-Logo

The following topics were covered in the podcast (“MHF Specials Episode 5: Cloud Expo Europe 2012 Part 1″):

  • Partnerships and services that GoGrid provides
  • Out-of-the-box solutions and services from GoGrid
  • What differentiates GoGrid from other vendors in the marketplace
  • Thoughts on the future of cloud computing in 5-10 years
  • Ideas on what the “next great thing” will be in the cloud hosting marketplace
  • What the future will bring for GoGrid

The podcast can be played directly below and is also available on iTunes.
Note that the GoGrid interview begins around timestamp 3:45 and ends around 11:25.

Audio clip: Adobe Flash Player (version 9 or above) is required to play this audio clip. Download the latest version here. You also need to have JavaScript enabled in your browser.

We would like to thank the MHF Tech Network team for spending the time to let us discuss cloud computing, the current and future state of GoGrid and how we view the marketplace. If you have any questions about any of the commentary in the podcast, please feel free to leave a comment on this article.


CloudLink is infrastructure so it can enable many use cases. However, you will be unable to use it until you configure your servers to use static routes. The rest of this post will describe how to create a static route from one server in US-West-1 to servers in US-East-1. This assumes that you have not already assigned a private IP to the West server. This guide assumes that you have a basic knowledge of Linux and/or Windows and with the basic principles of networking.

Find your Private IPs

wpid3499-media_1316553859879.png
First, you will need to find your private IPs. You can find your private IP block by going to the GoGrid portal, selecting the List tab and then Network. Under Type: Private you will see your private IP blocks. In this example, this is a listing of private IP blocks for US-West-1. US-East-1 has a DIFFERENT private IP block. The gateway is +1 from the first number in your private IP block (10.109.32.1) in the example above.

If you want to assign a private IP to a server in US-West-1, you would select it from the list in the screenshot – just pick one that you have not already assigned somewhere else. Take note of the subnet as you will need it later.

Assign a Private Static IP on Ubuntu / Debian

wpid3501-media_1316554724715.png

To assign a private IP, you can update the interface directly. Enter the following at the prompt or use your favorite Linux editor.

nano /etc/network/interfaces

Within the file enter the following (the IP is just an example, use one of your own. Don’t enter the text in the brackets):

auto eth1
iface eth1 inet static
address 10.100.10.3 [a private IP address in the West ]
netmask 255.255.255.0

Save the file.

This step assigns a private IP from your West block to a single Ubuntu / Debian server. You will need to activate the new IP so restart your network interface.

ifdown eth1

and then enter:

ifup eth1

Assign a Private IP to a Windows Server

wpid3503-media_1318009486218.png

For Windows users, you will need to do the following.

  1. Click on Start > Control Panel > Network Connections.
  2. Select Local Area Connection 2.
  3. Click Properties.
  4. Double-click TCP/IP in the scroll box.
  5. Enable the radio button titled Use the Following IP Address.
  6. Assign a PrivateIP address to this machine
    1.     You can find your private IP block by going to the GoGrid portal, selecting the List tab and then Network.
    2.     Under Type: Private you will see your private IP blocks. If this Windows Server is in the West, make sure to use IPs that have US-West-1 in the Datacenter column.
    3.     Select an available private IP address and note the Subnet Mask
  7. Enter the subnet mask as found on your list of private IP blocks.
  8. Leave the gateway blank.
  9. You can enter GoGrid’s name servers under DNS if you are so inclined.
  10. Continue to click OK to exit each subsequent window.
  11. To confirm changes were successful, open a command prompt window and type
    ipconfig /all
  12. Those steps will assign a private IP address to a particular machine. Make sure to enable “Local Area Connection 2”.

Create a static route on your Linux server

Once you have assigned a private IP to your server, you will then need to create a static route to your East private IP block. The IPs below are examples only, use your own IPs when you enter the command! This command will work on Ubuntu, Debian, Red Hat, and CentOS.

At the command line type:

route add -net 10.200.10.0 netmask 255.255.255.0 gw 10.100.10.1

This adds a route from your US-West-1 server to your US-East-1 private IP block (the 10.200.10.0 netmask… of the code) via the US-West-1 private gateway (10.100.10.1).

Persisting the static route on Linux

The command entered in the previous step will only keep the route while your session is active. In order to have the route stay through reboots, you will need to update configuration files on your server. Please see the wiki for instructions on how to set persistence and for configuring CentOS or Red Hat Enterprise Linux (RHEL).

Create a static route on your Windows server

wpid3505-media_1318528285041.png

Windows

  1. Open a command prompt by clicking on Start > Run
  2. Type “cmd” and click OK.
  3. Enter the command
    route add -p 10.200.10.0 [East private IP block] mask 255.255.255.0 [West Gateway IP]
    1. where [West Gateway IP] is +1from your first IP address in your Private Network block available in the GoGrid user interface. If your Windows Server is in the WEST then you will want to use the Gateway IP for the US-West-1 private network. So in the screenshot above, 10.109.32.1 is the gateway NOT 10.109.32.0. You will want to connect to the East private IP block, so the number after p is the first available number in your East Private IP block.
    2. For example, you would enter something like:
      route add -p 10.200.10.0 mask 255.255.255.0 10.109.32.1

      The p flag ensures that the route is persistent across reboots.

Testing the connection

If you want to test ping, you will need to assign a private IP to the server that you want to ping and also define a static route back to the IP blocks in the other datacenter. In this example, since you have setup a Windows machine with a route from West to East, you will need to setup a static route on an East server that you want to ping back to the West.

For example, you can execute the route command if you don’t want to persist the route for Windows:

route add 10.109.32.0 netmask 255.255.255.0 10.200.10.1

And for Linux machines:

route add -net 10.109.32.0 netmask 255.255.255.0 gw 10.200.10.1

This command sets a static route to your West private IP block through your East gateway.

ping 10.200.10.5

If you can successfully ping that configured US-East-1 private IP from your Windows server in US-West-1 then this has been configured correctly.

You’re done!

media_1327956022202.png
That’s all you need to do to start using CloudLink. You will need to set static routes for any server that is going to use this product. CloudLink is just the first step is GoGrid’s plan to continually innovate and expand our offerings to our customers. As GoGrid expands globally, so will all our products including CloudLink. As you grow your company internationally, GoGrid will be ready to grow with you!


CloudLink, a dedicated, private connection between GoGrid data centers, is GoGrid’s newest product that comes with some exciting new features. After being in private beta for several months, is now available to all GoGrid customers via the GoGrid portal. Customers who purchase it will have the ability to link servers from our US-West-1 Data Center to our US-East-1 Data Center via a dedicated, secure and redundant line. Customers are now be able to easily connect their servers via the private network between our Data Centers.

How do I get it?

media_1327948782091.png
The first step is to purchase the product. We have added a link within the GoGrid portal where you can click to order CloudLink. After clicking on the link, you will be presented with a form where you can select the desired bandwidth. It will take at least 2 business days to activate CloudLink on your account – once it is ready, you will get a message from GoGrid with a CloudLink welcome letter.

There are 3 product options to select :

  • 10 Mbps for $99/month
  • 100 Mbps for $699/month
  • 1 Gbps for $4999 (requires a 1 year commit)

You also have the option of pre-paying for a year of the product in advance at a discount. Note that you will need to contact a GoGrid account representative if you are interested in the 1 Gbps option – this level requires a 1 year commitment. Your account representative can work with you on the required documents and will also need to verify capacity. You can also ask your representative for other available capacities.

Once you have received the welcome letter, then you are good to go!

What is it?

CloudLink is a data center interconnect product. It sits on a redundant 10 Gbp pipe that will only contain GoGrid traffic. This means fewer hops and less interference since only GoGrid customers will be on the line. Unlike a public line traversing the internet, you will not need to compete with a large amount of unrelated traffic.

Customers can use their private interface on one data center to connect to the private interface of their servers in our other data centers. For example, customers can send traffic from servers in US-West-1 to servers in US-East-1. Since this is using the private network, this also means no bandwidth costs. CloudLink is designed to be easy, so we allow unlimited traffic through the pipe – you will only be limited by the bandwidth rate that you select.

What can I do with it?

media_1327949207555.png

CloudLink is an enabling technology. Customers will most likely find multiple uses cases for this product – two that are a natural fit are disaster recovery and data replication.

Disaster Recovery

Customers who run production systems out of US-West-1 will now have the option of transferring their data and files to US-East-1 via CloudLink. In the event of a failure in the West Data Center, all their data and files will exist on US-East-1, safely stored and isolated from issues in the West. Customers can configure this to be an automated failover solution (leveraging technology like Global Load Balancing) so that traffic fails over to their up-to-date backup server in the East or as a simple store of data so that there will be a complete recovery of files when the West data center is brought back up.

Data Replication

This can be conducted in two flavors, big data replication using products like Cassandra or Hadoop or relational database replication using products like MySQL or Postgres. A scenario that I can envision customers using this solution would be an app company that has customers on the West and East coast. For latency reasons, it would be preferable for customers to be routed to either US-West-1 or US-East-1 servers depending on their location. As customers interact with the app, the local databases store their information. Unless the data is replicated between the two local databases, they can quickly get out of sync.

Customers can leverage CloudLink to ensure that data is replicated on the fly, ensuring the information in one database is quickly and securely replicated in the other. Since the data travels only over the private network, bad actors outside the network will have no way to access this traffic.

Users of this customer’s service will now have updated information whether they are routed to either the East or West coast data centers.

See how one of our customer’s, Martini Media used CloudLink to enhance their Big Data solution.

Sign-on today!

CloudLink is an important strategic technology that broadens the capabilities of the GoGrid cloud, bridging the gap between data centers. Click here to learn more about CloudLink. Shortly, we will be posting an article that discusses how to configure CloudLink once you are ordered it. Sign-up on the portal or contact your GoGrid Sales Representative to start using it today!


As you may have seen, last week we announced the opening of GoGrid’s European Headquarters in Amsterdam. This is an exciting milestone for GoGrid since it means that GoGrid’s cloud infrastructure is now available in even more locations across the globe and with a European data center, sales and account support. Talk is cheap though, so we wanted to provide new and existing GoGrid customers the opportunity to gain “early access” to our European cloud so that it can be experienced first-hand.

_MG_2627

Whether you are new to GoGrid or an existing customer, we can grant you early access to the GoGrid Amsterdam data center easily. Choose one of the options below:

  • New GoGrid Users – Please visit the GoGrid signup page: https://securesignup.GoGrid.com and use promocode: AMSGG100. The promocode will grant you access to deploy infrastructure within the new Amsterdam data center as well as provide you with a $100 service credit.
  • Existing GoGrid Users – Please contact your GoGrid Account Representative about VIP early access and pricing.

Please note, for new users, the promo code can only be used between January 30th, 2012 and February 13th, 2012 and will last through February 29th, 2012 or when the $100 cap is reached, whichever comes first).

_MG_2608-2

We look forward to your feedback on our new data center and should you want to learn more about European presence and to download our Cloud Computing 101 Toolkit, which is a collection of white papers, industry research, analyst reports, case studies and videos, please visit: http://go.gogrid.com/amsterdam_launch/ .


It’s exciting times at GoGrid this week as we announce another milestone in our company’s history—the opening of our European Headquarters. GoGrid AMS BV is located in Amsterdam, the Netherlands, and will provide our customers with fully integrated, on-demand, global cloud infrastructure services through any of GoGrid’s data centers, including our new Amsterdam location as well as San Francisco, CA, and Ashburn, VA.

Amsterdam-globe

Why now? Why Amsterdam?

The appetite for Infrastructure as a Service (IaaS) is rapidly growing worldwide. With Gartner predicting that the IaaS market will soon account for a quarter of the overall hosting department, the opportunity seemed ripe to take the next step in our continued global expansion. Amsterdam was the perfect choice when looking to set up our HQ thanks to its central geographic location, which makes it attractive to businesses operating or looking to operate within the EU, as well as its rich infrastructure, its reputation as a high-tech center, and its talented workforce.

Interested in learning more?

If you’re attending Cloud Expo Europetomorrow and/or Thursday, be sure to pop by the GoGrid booth (1013) where you can chat with me and other key members of the team: Craig DeMartini, head of sales, VP of Operations Bobby Brown, and Senior Product Manager Rupert Tagnipes. We can tell you more about the opening and the benefits that this expansion brings.

cloudexpo-europe

At the show there’ll also be the opportunity to hear about Condé Nast Digital Germany’s success hosting its magazine content on GoGrid’s infrastructure (25 January at 14.20 – Cloud and Virtualization Infrastructure and Platforms Theatre) and why Martini Media chose GoGrid’s cloud technology for its multi-data-center solution (25 January at 16.35 – Cloud and Virtualization Infrastructure and Platforms Theatre).

It’s set to be a great show, so we hope to see you there!

If you can’t make it down to Cloud Expo Europe, please contact GoGrid’s new European HQ at emea-sales@gogrid.com for more information. To learn how cloud computing can help your business and to access our Cloud Computing 101 Toolkit, go to http://go.gogrid.com/amsterdam_launch/.