Here’s how to add a new route in Google Cloud Platform.
gcloud compute routes create name-of-new-route \ --destination-range=200.20.0.0/15 \ --next-hop-gateway=default-internet-gateway \ --project=host-project \ --network="default" \ --priority=900 |
cloud engineer
Here’s how to add a new route in Google Cloud Platform.
gcloud compute routes create name-of-new-route \ --destination-range=200.20.0.0/15 \ --next-hop-gateway=default-internet-gateway \ --project=host-project \ --network="default" \ --priority=900 |
gcloud compute routes create name-of-new-route \ --destination-range=200.20.0.0/15 \ --next-hop-gateway=default-internet-gateway \ --project=host-project \ --network="default" \ --priority=900
I ran into an issue with Google Compute Engine TCP internal load balancer. The targets are unhealthy although all configs were correct installed. At one time the targets were working, but somehow they became unhealthy. In the end, 3 things needed to be checked.
You will need to change the server’s IP from DHCP to static to add ILB VIP.
Here’s how to add a route in Windows. Open CMD as Administrator.
route add 10.10.10.10 mask 255.255.255.0 10.10.10.254 |
route add 10.10.10.10 mask 255.255.255.0 10.10.10.254
To make it persistent, add -p.
route add 10.10.10.10 mask 255.255.255.0 10.10.10.254 |
route add 10.10.10.10 mask 255.255.255.0 10.10.10.254
To display. Specifies IP 4 only.
route print -4 |
route print -4