--- layout: "docs" page_title: "Duo MFA - MFA Support - Vault Enterprise" sidebar_title: "Duo MFA" sidebar_current: "docs-vault-enterprise-mfa-duo" description: |- Vault Enterprise supports Duo MFA type. --- # Duo MFA This page demonstrates the Duo 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 Duo MFA: ```text $ vault write sys/mfa/method/duo/my_duo \ mount_accessor=auth_userpass_54b8e339 \ integration_key=BIACEUEAXI20BNWTEYXT \ secret_key=HIGTHtrIigh2rPZQMbguugt8IUftWhMRCOBzbuyz \ api_hostname=api-2b5c39f5.duosecurity.com ``` 1. Create a policy that gives access to secret through the MFA method created above: ```text $ vault policy write duo-policy -<