--- layout: docs page_title: PingID MFA - MFA Support - Vault Enterprise description: Vault Enterprise supports PingID MFA type. --- # PingID MFA This page demonstrates PingID MFA on ACL'd paths of Vault. ## Configuration 1. Enable the appropriate auth method: ```text $ vault auth enable userpass ``` 1. Fetch the mount accessor for the enabled auth method: ```text $ vault auth list -detailed ``` The response will look like: ```text Path Type Accessor Plugin Default TTL Max TTL Replication Description ---- ---- -------- ------ ----------- ------- ----------- ----------- token/ token auth_token_289703e9 n/a system system replicated token based credentials userpass/ userpass auth_userpass_54b8e339 n/a system system replicated n/a ``` 1. Configure PingID MFA: ```text $ vault write sys/mfa/method/pingid/ping \ mount_accessor=auth_userpass_54b8e339 \ settings_file_base64="AABDwWaR..." ``` 1. Create a policy that gives access to secret through the MFA method created above: ``` $ vault policy write ping-policy -<