This section describes how to configure EAP authentication IPSec VPN between an AP and the FW in wireless solutions.
As shown in Figure 1, a FW serves as a security gateway at the core network border. An IPSec VPN tunnel is set up between the AP and the FW to ensure data security. When EAP authentication IPSec VPN is used, the FW uses a RADIUS server to authenticate the AP. The tunnel can be set up only after the AP is authenticated.
This example describes only how to configure user management and authentication.
| Item | Data | Description |
|---|---|---|
RADIUS server |
|
On the FW, set the parameters for communicating with a RADIUS server. The parameters on the FW must be consistent with those on the RADIUS server. |
Authentication domain |
|
The example.org authentication domain is used during authentication. The domain name is stored in the SIM card of the AP, and you must obtain the domain name in advance. The format of the domain name is similar to example.mnc001.mcc460.3gppnetwork.org. |
<FW> system-view [FW] interface GigabitEthernet 0/0/3 [FW-GigabitEthernet0/0/3] ip address 10.3.0.1 24 [FW-GigabitEthernet0/0/3] quit [FW] firewall zone trust [FW-zone-trust] add interface GigabitEthernet 0/0/3 [FW-zone-trust] quit
[FW] radius-server template auth_server_radius [FW-radius-auth_server_radius] radius-server shared-key cipher secret [FW-radius-auth_server_radius] radius-server authentication 10.2.0.50 1812 [FW-radius-auth_server_radius] quit
[FW] aaa [FW-aaa] authentication-scheme eap [FW-aaa-authen-eap] authentication-mode radius [FW-aaa-authen-eap] quit
[FW-aaa] domain example.org [FW-aaa-domain-example.org] authentication-scheme eap [FW-aaa-domain-example.org] radius-server auth_server_radius [FW-aaa-domain-example.org] service-type ike [FW-aaa-domain-example.org] quit [FW-aaa] quit
[FW-policy-security] rule name policy_local_02 [FW-policy-security-rule-policy_local_02] source-zone local [FW-policy-security-rule-policy_local_02] destination-zone dmz [FW-policy-security-rule-policy_local_02] destination-address 10.2.0.50 32 [FW-policy-security-rule-policy_local_02] action permit [FW-policy-security-rule-policy_local_02] quit
# sysname FW # radius-server template auth_server_radius radius-server shared-key cipher %$%$73pu<+^]XV9mn=*qd}_,r3*!%$%$ radius-server authentication 10.2.0.50 1812 # interface GigabitEthernet0/0/1 ip address 1.1.1.1 255.255.255.0 # interface GigabitEthernet0/0/2 ip address 10.2.0.1 255.255.255.0 # interface GigabitEthernet0/0/3 ip address 10.3.0.1 255.255.255.0 # firewall zone trust add interface GigabitEthernet0/0/3 # firewall zone untrust add interface GigabitEthernet0/0/1 # firewall zone dmz add interface GigabitEthernet0/0/2 # aaa authentication-scheme eap authentication-mode radius # domain example.org authentication-scheme eap radius-server auth_server_radius service-type ike # security-policy rule name policy_local_02 source-zone local destination-zone dmz destination-address 10.2.0.50 32 action permit # return