默认情况下Citrix Web Interface Management Console是不支持修改Authentication Point的,也就是认证发生的位置,比如在AG上或者在Web Interface上。如果我们要修改认证的位置,那么我们就必须创建新的Site,然后重新配置站点。但是有些情况下,如果我们对WI做了很多的定制和个性化以后,重新创建站点,就增加了很大的工作量,这个时候我们可以有更简单的方法来修改。这里只是讲Authentication Point从access gateway修改为web interface,反过来可以逆推。其他方式没做研究。

为了把原来认证位置为AG的改成WI,我们有两个文件需要修改(请关注五角星标示的注释说明):

bootstrap.conf

 
  
  1. #以下内容为Authentication Point为AccessGateway的时候的配置文件  
  2. #★★★下面一行为认证方式为AG时候才有,所以如果要改成在WI认证,那么我们需要使用  
  3. #好注销掉该行AGAuthServiceURL=https://myserver/as.asmx  
  4. #★★★下面一行为设置Authentication Point,所以我们需要修改为WebInterface  
  5. AuthenticationPoint=AccessGateway  
  6. AGPromptPassword=Off 
  7. DefaultLocale=en  
  8. ConfigurationLocation=WebInterface.conf  
  9. SiteName=XenApp2 

webinterface.conf

 
  
  1. #  
  2. # WebInterface.conf  
  3. # Ensure that this file is saved with UTF-8 encoding  
  4. # AccountSelfServiceUrl=  
  5. # AdditionalExplicitAuthentication=None  
  6. Addre***esolutionType=dns-port  
  7. #★★★以下三行为AuthenticationPoint为AG的时候才启用的,我们需要注销以下三行,使用#号AGEPromptPassword=Off 
  8. AGEWebServiceURL=https://myserver/as.asmx  
  9. AGAuthenticationMethod=Explicit  
  10. AllowBandwidthSelection=Off 
  11. AllowCustomizeAudio=Off 
  12. ...  
  13. 省略  
  14. ...  
  15. # AppWelcomeMessage_<lang-code>=[Customized welcome message on the Applications screen in the specified language]  
  16. #★★★同样,修改AccessGateway为WebInterface  
  17. AuthenticationPoint=AccessGateway  
  18. # AutoLaunchDesktop=Off 
  19. AutoLoginDefault=On 

BTW:这两个文件所在位置为:C:\inetpub\wwwroot\Citrix\<site name>\conf\

申明:该方法非官方,不受官方技术支持,实测OK,不保证有其他隐患。