Google Cloud Platform 有CentOS/Redhat 6 執行 yum update 後造成無法連線的現象。這是CentOS/Redhat 6 kernel 版本造成 GCP GCE Gateway Nil 的 bugs。
以下為Google Support 提供 Workaround 的解決方法,需要對該台 instance 執行 start script [1],start script 如下:
```
#!/bin/bash
route add default gw [default_gateway_ip] eth0
```
其中 default_gateway_ip 可以從 VPC Network>VPC Networks 找到這台 VM 的 region gateways
原文在此 [2]