daviftorres commented on issue #11408: URL: https://github.com/apache/cloudstack/issues/11408#issuecomment-3176752860
I couldn’t find this process in CloudStack’s documentation, but here’s what worked for me to enable the VPC: Get the Network Service Provider ID for VpcVirtualRouter: ``` VPCNSPID=$( cmk list networkserviceproviders name=VpcVirtualRouter physicalnetworkid=$PHYNETID | jq -r '.networkserviceprovider[0].id' ) ``` Get the Virtual Router Element ID for that provider: ``` VPCVREID=$( cmk list virtualrouterelements nspid=$VPCNSPID | jq -r '.virtualrouterelement[0].id' ) ``` Enable the Virtual Router Element: ``` cmk configure virtualrouterelement enabled=true id=$VPCVREID ``` Enable the Network Service Provider: ``` cmk update networkserviceprovider state=Enabled id=$VPCNSPID ``` It might require the same steps to enable additional features, such as Internal LB. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org