VMware Cloud Community
fcollerette
Contributor
Contributor

vCloud Director 8.20 - Advanced Edge - Error

HI, we have updated our vCloud to version 8.20.

We are quite pleased with the "advanced edge".

We are experiencing a little problem with it.

If we log in the main administration (root) and go in a ORG VDC we can see all the advanced features.

If we log in from the tenant point of view, we only see 2 tabs and get the error : You need some or all of the following rights [ORG_VDC_GATEWAY_VIEW_SSH, ORG_VDC_GATEWAY_CONFIGURE_SSH] to perform operations [GATEWAY_VIEW_SSH

We have looked in the roles and cannot see those rights so while us (system admins) can leverage the new features, we cannot add the correct right so our tenants can do the same.

Thanks for your help.

2 Replies
vBahubali
Contributor
Contributor

Hello,

By default you will not find rights required for use of Advance features of edge as org users. You need need to use REST API to import advance features rights in system admin and then enable those rights for user in organization to allow them to use these additional network feature.

https://kb.vmware.com/kb/2149016

Below is sample screen shot showing put request for reference.

pastedImage_0.png

0 Kudos
vMarkusK1985
Expert
Expert

vBahubali​ is absolut right.I use this PowerShell Modul to add the Rights to the UI.

$Orgs = Get-Org

foreach ($Org in $Orgs) {

    $Rights = Get-CIOrgRights -OrgName $Org.name | where {$_.Name -match "Organization vDC Gateway: Configure |Organization vDC Gateway: View " -and $_.name -notmatch "Services|Syslog|System"}

    foreach ($Right in $Rights) {

        Add-CIOrgRight -OrgName $Org.name -Right $Right.Name

    }

}

Best Regards,

Markus

https://mycloudrevolution.com | https://twitter.com/vMarkus_K | https://github.com/vMarkusK