Note: Please follow the below steps with caution. Ensure to take a snapshot of the SDDC Manager Virtual Machine before proceeding.
Follow the steps below to edit the Gateway for network pool.
psql --host=localhost -U postgres -d platform
\x
vcf_network
and note down the id
for the respective network (for vSAN or vMotion) for which the gateway needs to be updated:select * from vcf_network;
update vcf_network set gateway='<new_vSan_Gateway_IP>' where id='<vSAN ID>';
update vcf_network set gateway='<new_vMotion_Gateway_IP>' where id='<vMotion ID>';
\q
Note: Ensure that the gateway is updated on the ESXi host for vMotion and vSAN network.