Update IKEv2 script
- Add a workaround for Ubuntu 22.04 "password is incorrect" issue when importing IKEv2 client config files into iOS and macOS devices. - Ubuntu 22.04 uses OpenSSL 3, which has a default "openssl pkcs12" encoding algorithm that is incompatible with iOS and macOS devices. Ref: https://developer.apple.com/forums/thread/697030?answerId=701291022#701291022
This commit is contained in:
parent
d794fe0772
commit
3a5d46653d
@ -745,6 +745,22 @@ export_p12_file() {
|
||||
-name "$client_name" -passin "pass:$p12_password" -passout pass: || exit 1
|
||||
fi
|
||||
/bin/rm -f "$pem_file"
|
||||
elif [ "$os_type" = "ubuntu" ] && [ "$os_ver" = "bookwormsid" ]; then
|
||||
ca_crt="$export_dir$client_name.ca.crt"
|
||||
client_crt="$export_dir$client_name.client.crt"
|
||||
client_key="$export_dir$client_name.client.key"
|
||||
pem_file="$export_dir$client_name.temp.pem"
|
||||
openssl pkcs12 -in "$p12_file_enc" -passin "pass:$p12_password" -cacerts -nokeys -out "$ca_crt" || exit 1
|
||||
openssl pkcs12 -in "$p12_file_enc" -passin "pass:$p12_password" -clcerts -nokeys -out "$client_crt" || exit 1
|
||||
openssl pkcs12 -in "$p12_file_enc" -passin "pass:$p12_password" -passout "pass:$p12_password" -nocerts -out "$client_key" || exit 1
|
||||
cat "$client_key" "$client_crt" "$ca_crt" > "$pem_file"
|
||||
openssl pkcs12 -keypbe PBE-SHA1-3DES -certpbe PBE-SHA1-3DES -export -in "$pem_file" -out "$p12_file_enc" \
|
||||
-legacy -name "$client_name" -passin "pass:$p12_password" -passout "pass:$p12_password" || exit 1
|
||||
if [ "$use_config_password" = "0" ]; then
|
||||
openssl pkcs12 -keypbe PBE-SHA1-3DES -certpbe PBE-SHA1-3DES -export -in "$pem_file" -out "$p12_file" \
|
||||
-legacy -name "$client_name" -passin "pass:$p12_password" -passout pass: || exit 1
|
||||
fi
|
||||
/bin/rm -f "$ca_crt" "$client_crt" "$client_key" "$pem_file"
|
||||
elif [ "$use_config_password" = "0" ]; then
|
||||
pk12util -W "" -d "$CERT_DB" -n "$client_name" -o "$p12_file" >/dev/null || exit 1
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user