Adding FIC MFA to remote access IPsec VPN
This use case shows how to add FIC multi-factor authentication (MFA) to a FortiClient dialup VPN configuration (see FortiClient as dialup client).
Creating users
To create users from the GUI:
- Select User & Device > User Definition.
- Select Create New.
- Select Local User, and click Next.
- Name the user "test-ipsec".
- Enable the User Account Status.
- Enter a unique password for the user.
- Enter the user's email address.
- Enable two-factor Authentication, and set the Authentication Type to FortiIdentity Cloud.
- Click OK.
- Repeat Steps 1 through 9 to create another user named "testipsec2".
To create users from the Console:
config user local
edit "test-ipsec"
set type password
set passwd <user-password>
set two-factor fortitoken-cloud
set email-to <user@abc.com>
next
end
config user local
edit "testipsec2"
set type password
set passwd <user-password>
set two-factor fortitoken-cloud
set email-to <user@abc.com>
next
end
Creating a user group
To create a user group from the GUI:
- Select User & Device > User Groups.
- Click Create New.
- Name the user group "ipsecgrp".
- Set User Group Type to Firewall .
- Click the + sign (Add) in the Member box to add users "test-ipsec" and "testipsec2" to the user group.
- Click OK.
To create a user group from the Console:
config user group
edit "ipsecgrp"
set member "test-ipsec" "testipsec2"
next
end