CAS 认证

使用 CAS 的用户作为 JumpServer 登录用户

修改 JumpServer 配置文件启用 CAS 认证

  1. vi /opt/jumpserver/config/config.txt
  1. AUTH_CAS=True
  2. CAS_SERVER_URL=https://account.jumpserver.org/cas/
  3. CAS_ROOT_PROXIED_AS=https://demo.jumpserver.org:8443
  4. CAS_LOGOUT_COMPLETELY=False
  5. CAS_VERSION=3
  6. CAS_USERNAME_ATTRIBUTE=uid
  7. CAS_APPLY_ATTRIBUTES_TO_USER=Flase
  8. CAS_CREATE_USER=True

设置参数说明

nameexplain
AUTH_CASWhether to open CAS authentication.
CAS_SERVER_URLThis is the only setting you must explicitly define. Set it to the base URL of your CAS source (e.g. https://account.example.com/cas/).
CAS_ROOT_PROXIED_ASUseful if behind a proxy server. If host is listening on http://foo.bar:8080 but request is https://foo.bar:8443. Add CAS_ROOT_PROXIED_AS = https://foo.bar:8443 to your settings.
CAS_LOGOUT_COMPLETELYIf False, logging out of the application won’t log the user out of CAS as well.
CAS_VERSIONThe CAS protocol version to use.
CAS_USERNAME_ATTRIBUTEThe CAS user name attribute from response. If set with a value other than uid when CAS_VERSION is not ‘CAS_2_SAML_1_0’, this will be handled by the CASBackend, in which case if the user lacks that attribute then authentication will fail. Note that the attribute is checked before CAS_RENAME_ATTRIBUTES is applied.
CAS_APPLY_ATTRIBUTES_TO_USERIf True any attributes returned by the CAS provider included in the ticket will be applied to the User model returned by authentication. This is useful if your provider is including details about the User which should be reflected in your model.
CAS_RENAME_ATTRIBUTESA dict used to rename the (key of the) attributes that the CAS server may retrun. For example, if CAS_RENAME_ATTRIBUTES = {“casUserUid”: “username”, “casUser”: “name”, “casUserEmail”, “email”} the ln attribute returned by the cas server will be renamed as last_name. Used with CAS_APPLY_ATTRIBUTES_TO_USER = True, this provides an easy way to fill in Django Users’ info independently from the attributes’ keys returned by the CAS server.
CAS_CREATE_USERCreate a user when the CAS authentication is successful. The default is True.

CAS_VERSION 可选 123CAS_2_SAML_1_0