Google Cloud Compute Instance, IPv6

I currently have an instance of Google Cloud Computing designed to support a multiplayer game. Some publishers and app stores that I'm trying to publish in the game require that the server can be reached through the client using the IPv6 address, which makes sense. So the question is, how can I make the instance of computation connect over IPv6?

It is worth noting that the connection between the client and the server is through UDP, so the use of load balancing does not work (since load balancers in the Google cloud can only be done through TCP, from what I can say).

Has anyone else had this problem, and if so, how did you solve it?

Thank you very much in advance.

+4
source share
2 answers

IPv6 completion for HTTP (S), SSL proxies, and TCP proxy load balancing is currently in beta.

https://cloud.google.com/compute/docs/load-balancing/ipv6

Configuring IPv6 completion for your load balancers allows your backend instances to appear as IPv6 applications for your IPv6 clients.

Note. The documentation states that this feature is not covered by any SLA or deprecation policy and can be changed backwards-incompatibly.

- : - - , . - SLA , . , . - .

https://cloud.google.com/terms/launch-stages

+3

Source: https://habr.com/ru/post/1682128/


All Articles