This content has been machine translated dynamically.
Dieser Inhalt ist eine maschinelle Übersetzung, die dynamisch erstellt wurde. (Haftungsausschluss)
Cet article a été traduit automatiquement de manière dynamique. (Clause de non responsabilité)
Este artículo lo ha traducido una máquina de forma dinámica. (Aviso legal)
此内容已经过机器动态翻译。 放弃
このコンテンツは動的に機械翻訳されています。免責事項
이 콘텐츠는 동적으로 기계 번역되었습니다. 책임 부인
Este texto foi traduzido automaticamente. (Aviso legal)
Questo contenuto è stato tradotto dinamicamente con traduzione automatica.(Esclusione di responsabilità))
This article has been machine translated.
Dieser Artikel wurde maschinell übersetzt. (Haftungsausschluss)
Ce article a été traduit automatiquement. (Clause de non responsabilité)
Este artículo ha sido traducido automáticamente. (Aviso legal)
この記事は機械翻訳されています.免責事項
이 기사는 기계 번역되었습니다.책임 부인
Este artigo foi traduzido automaticamente.(Aviso legal)
这篇文章已经过机器翻译.放弃
Questo articolo è stato tradotto automaticamente.(Esclusione di responsabilità))
Translation failed!
联合身份验证服务配置
使用诸如 SAML 之类的身份验证方法时,如果用户不直接在 Citrix Workspace 应用程序中输入凭据,则默认情况下无法单点登录 VDA。在这些情况下,您可以使用联合身份验证服务 (FAS) 通过证书身份验证为 VDA 提供单点登录。
要将 FAS 与 StoreFront 配合使用,必须使用 PowerShell SDK 配置 StoreFront。请使用 Set-STFClaimsFactoryNames 将声明工厂设置为 FASClaimsFactory
,使用 Set-STFStoreLaunchOptions 将 VDA 登录数据登录提供程序设置为 FASLogonDataProvider
。
例如,要为应用商店启用 FAS,请执行以下操作:
$store = Get-STFStoreService -VirtualPath [VirtualPath]
$auth = Get-STFAuthenticationService -StoreService $store
Set-STFClaimsFactoryNames -AuthenticationService $auth -ClaimsFactoryName "FASClaimsFactory"
Set-STFStoreLaunchOptions -StoreService $store -VdaLogonDataProvider "FASLogonDataProvider"
<!--NeedCopy-->
要为应用商店禁用 FAS,请执行以下操作:
$store = Get-STFStoreService -VirtualPath [VirtualPath]
$auth = Get-STFAuthenticationService -StoreService $store
Set-STFClaimsFactoryNames -AuthenticationService $auth -ClaimsFactoryName "standardClaimsFactory"
Set-STFStoreLaunchOptions -StoreService $store -VdaLogonDataProvider ""
<!--NeedCopy-->
替换相应虚拟路径的 [VirtualPath]
,例如 /Citrix/Store
。
要配置 FAS 服务器列表以及其他设置,必须使用组策略。有关更多详细信息,请参阅 FAS 文档。
通过浏览器使用域直通或智能卡进行身份验证时不使用 FAS。
FAS 服务器不可用
如果 FAS 服务器不可用,则默认情况下启动将失败。但是,您可以对 StoreFront 进行配置,让用户在 FAS 服务器不可用时可以通过输入凭据来登录 VDA。要更改配置,请使用带参数 FederatedAuthenticationServiceFailover
的 Powershell cmdlet Set-STFStoreLaunchOptions。例如,要为应用商店启用故障转移,请执行以下操作:
$storeService = Get-STFStoreService -VirtualPath [VirtualPath]
Set-STFStoreLaunchOptions $storeService -FederatedAuthenticationServiceFailover $True
<!--NeedCopy-->
共享
共享
在本文中
This Preview product documentation is Citrix Confidential.
You agree to hold this documentation confidential pursuant to the terms of your Citrix Beta/Tech Preview Agreement.
The development, release and timing of any features or functionality described in the Preview documentation remains at our sole discretion and are subject to change without notice or consultation.
The documentation is for informational purposes only and is not a commitment, promise or legal obligation to deliver any material, code or functionality and should not be relied upon in making Citrix product purchase decisions.
If you do not agree, select I DO NOT AGREE to exit.