Where can I find the name servers of Google Compute Engine?
Asked Answered
M

2

13

I have uploaded a website to my Compute Engine instance and I wanted to set the registrar to send the visitors to the server (Compute Engine).

Where can I get the name servers of my instance/server over Compute Engine?

Maytime answered 18/2, 2014 at 7:28 Comment(1)
How did you've managed in the end?Forsook
F
12

Google Compute Engine does not provide a nameserver on the public internet. (It does provide a nameserver for the internal network which is private to your project, this allows you to connect to instances via their instance names rather than IP.)

If you want your instances to be available via public internet DNS nameservers, you'll need an external nameserver and one or more static IP addresses for your instances.

You have two options for static IP addresses on Compute Engine: You can have a static address for a single instance, or for the GCE Load Balancer.

See this documentation for how to configure a static IP address for an instance.

Using the Load Balancer is more flexible. See this documentation for details on Load Balancing.

Fretwork answered 18/2, 2014 at 20:44 Comment(1)
Update: As of March 25th, Google Cloud now offers DNS name servers as well: developers.google.com/cloud-dnsFretwork
P
-2

Google Public DNS provides public use name resolution for the masses here: https://developers.google.com/speed/public-dns/ for free and Google Cloud DNS provides here: https://developers.google.com/cloud-dns/ for nearly but not quite free.

Patriciate answered 18/4, 2014 at 16:5 Comment(1)
Public DNS does not address the question. That provides a resolver for anyone to use on their computers. It isn't a DNS server, which is what the question is asking about. Cloud DNS does provide what the user is looking for, but its an incomplete answer.Debor

© 2022 - 2024 — McMap. All rights reserved.