blob: f3a9e2e5c1c35d5d35d985b2de0a5d1eddbffb17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
connections {
ikev2-eap {
version = 2
# iOS/macOS/Android 互換の暗号スイート
proposals = aes256gcm16-prfsha256-ecp256,aes256-sha256-ecp256,aes256gcm16-prfsha384-ecp384,aes256-sha256-modp2048,aes256-sha1-modp2048
local {
auth = pubkey
certs = server.crt
id = ${VPN_DOMAIN}
}
remote {
auth = eap-mschapv2
eap_id = %any
}
children {
vpn {
local_ts = 0.0.0.0/0
esp_proposals = aes256gcm16,aes256-sha256,aes256-sha1
dpd_action = clear
}
}
pools = pool4
send_certreq = no
dpd_delay = 30s
}
}
pools {
pool4 {
addrs = 10.10.0.0/24
dns = 1.1.1.1,8.8.8.8
}
}
secrets {
${VPN_SECRETS}
}
|