Update links
- Update links due to git.io deprecation. Ref: https://github.blog/changelog/2022-04-25-git-io-deprecation/
This commit is contained in:
parent
c15d2759c4
commit
c66ca577f3
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 143 KiB After Width: | Height: | Size: 143 KiB |
@ -90,8 +90,8 @@ Password: $VPN_PASSWORD
|
||||
|
||||
Write these down. You'll need them to connect!
|
||||
|
||||
Important notes: https://git.io/vpnnotes
|
||||
Setup VPN clients: https://git.io/vpnclients
|
||||
Important notes: vpnsetup.net/notes
|
||||
Setup VPN clients: vpnsetup.net/clients
|
||||
|
||||
================================================
|
||||
|
||||
|
@ -104,7 +104,7 @@ check_ikev2() {
|
||||
if ! grep -qs "conn ikev2-cp" /etc/ipsec.d/ikev2.conf; then
|
||||
cat 1>&2 <<'EOF'
|
||||
Error: You must first set up IKEv2 before changing IKEv2 server address.
|
||||
See: https://git.io/ikev2
|
||||
See: vpnsetup.net/ikev2
|
||||
EOF
|
||||
exit 1
|
||||
fi
|
||||
|
@ -59,7 +59,7 @@ EOF
|
||||
if ! check_ikev2_exists; then
|
||||
cat 1>&2 <<'EOF'
|
||||
Error: Your must first set up IKEv2 before selecting IKEv2-only mode.
|
||||
See: https://git.io/ikev2
|
||||
See: vpnsetup.net/ikev2
|
||||
EOF
|
||||
exit 1
|
||||
fi
|
||||
|
@ -151,7 +151,7 @@ confirm_or_abort() {
|
||||
show_header() {
|
||||
cat <<'EOF'
|
||||
|
||||
IKEv2 Script Copyright (c) 2020-2022 Lin Song 28 Apr 2022
|
||||
IKEv2 Script Copyright (c) 2020-2022 Lin Song 30 Apr 2022
|
||||
|
||||
EOF
|
||||
}
|
||||
@ -175,7 +175,7 @@ Options:
|
||||
-h, --help show this help message and exit
|
||||
|
||||
To customize IKEv2 or client options, run this script without arguments.
|
||||
For documentation, see: https://git.io/ikev2
|
||||
For documentation, see: vpnsetup.net/ikev2
|
||||
EOF
|
||||
exit 1
|
||||
}
|
||||
@ -1076,7 +1076,7 @@ create_config_readme() {
|
||||
&& [ "$use_defaults" = "1" ] && [ ! -t 1 ] && [ ! -f "$readme_file" ]; then
|
||||
cat > "$readme_file" <<'EOF'
|
||||
These IKEv2 client config files were created during IPsec VPN setup.
|
||||
To configure IKEv2 clients, see: https://git.io/ikev2clients
|
||||
To configure IKEv2 clients, see: vpnsetup.net/ikev2clients
|
||||
EOF
|
||||
if [ "$export_to_home_dir" = "1" ]; then
|
||||
chown "$SUDO_USER:$SUDO_USER" "$readme_file"
|
||||
@ -1271,7 +1271,7 @@ EOF
|
||||
cat <<'EOF'
|
||||
|
||||
Next steps: Configure IKEv2 clients. See:
|
||||
https://git.io/ikev2clients
|
||||
vpnsetup.net/ikev2clients
|
||||
|
||||
================================================
|
||||
|
||||
@ -1299,7 +1299,7 @@ check_ipsec_conf() {
|
||||
cat 1>&2 <<EOF
|
||||
Error: IKEv2 configuration section found in $IPSEC_CONF.
|
||||
This script cannot automatically remove IKEv2 from this server.
|
||||
To manually remove IKEv2, see https://git.io/ikev2
|
||||
To manually remove IKEv2, see vpnsetup.net/ikev2
|
||||
EOF
|
||||
abort_and_exit
|
||||
fi
|
||||
|
@ -27,9 +27,9 @@ YOUR_IPSEC_PSK=''
|
||||
YOUR_USERNAME=''
|
||||
YOUR_PASSWORD=''
|
||||
|
||||
# Important notes: https://git.io/vpnnotes
|
||||
# Setup VPN clients: https://git.io/vpnclients
|
||||
# IKEv2 guide: https://git.io/ikev2
|
||||
# Important notes: vpnsetup.net/notes
|
||||
# Setup VPN clients: vpnsetup.net/clients
|
||||
# IKEv2 guide: vpnsetup.net/ikev2
|
||||
|
||||
# =====================================================
|
||||
|
||||
|
@ -53,7 +53,7 @@ EOF
|
||||
command -v openssl >/dev/null 2>&1 || exiterr "'openssl' not found. Abort."
|
||||
if [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
|
||||
cat 1>&2 <<'EOF'
|
||||
For usage information, visit https://git.io/vpnnotes, then click on Manage VPN Users.
|
||||
For usage information, visit vpnsetup.net/notes, then click on Manage VPN Users.
|
||||
EOF
|
||||
exit 1
|
||||
fi
|
||||
@ -107,8 +107,8 @@ cat <<'EOF'
|
||||
|
||||
Write these down. You'll need them to connect!
|
||||
|
||||
Important notes: https://git.io/vpnnotes
|
||||
Setup VPN clients: https://git.io/vpnclients
|
||||
Important notes: vpnsetup.net/notes
|
||||
Setup VPN clients: vpnsetup.net/clients
|
||||
|
||||
==================================================
|
||||
|
||||
|
@ -27,9 +27,9 @@ YOUR_IPSEC_PSK=''
|
||||
YOUR_USERNAME=''
|
||||
YOUR_PASSWORD=''
|
||||
|
||||
# Important notes: https://git.io/vpnnotes
|
||||
# Setup VPN clients: https://git.io/vpnclients
|
||||
# IKEv2 guide: https://git.io/ikev2
|
||||
# Important notes: vpnsetup.net/notes
|
||||
# Setup VPN clients: vpnsetup.net/clients
|
||||
# IKEv2 guide: vpnsetup.net/ikev2
|
||||
|
||||
# =====================================================
|
||||
|
||||
|
@ -26,9 +26,9 @@ YOUR_IPSEC_PSK=''
|
||||
YOUR_USERNAME=''
|
||||
YOUR_PASSWORD=''
|
||||
|
||||
# Important notes: https://git.io/vpnnotes
|
||||
# Setup VPN clients: https://git.io/vpnclients
|
||||
# IKEv2 guide: https://git.io/ikev2
|
||||
# Important notes: vpnsetup.net/notes
|
||||
# Setup VPN clients: vpnsetup.net/clients
|
||||
# IKEv2 guide: vpnsetup.net/ikev2
|
||||
|
||||
# =====================================================
|
||||
|
||||
@ -517,9 +517,9 @@ Password: $VPN_PASSWORD
|
||||
|
||||
Write these down. You'll need them to connect!
|
||||
|
||||
Important notes: https://git.io/vpnnotes
|
||||
Setup VPN clients: https://git.io/vpnclients
|
||||
IKEv2 guide: https://git.io/ikev2
|
||||
Important notes: vpnsetup.net/notes
|
||||
Setup VPN clients: vpnsetup.net/clients
|
||||
IKEv2 guide: vpnsetup.net/ikev2
|
||||
|
||||
================================================
|
||||
|
||||
|
@ -26,9 +26,9 @@ YOUR_IPSEC_PSK=''
|
||||
YOUR_USERNAME=''
|
||||
YOUR_PASSWORD=''
|
||||
|
||||
# Important notes: https://git.io/vpnnotes
|
||||
# Setup VPN clients: https://git.io/vpnclients
|
||||
# IKEv2 guide: https://git.io/ikev2
|
||||
# Important notes: vpnsetup.net/notes
|
||||
# Setup VPN clients: vpnsetup.net/clients
|
||||
# IKEv2 guide: vpnsetup.net/ikev2
|
||||
|
||||
# =====================================================
|
||||
|
||||
@ -533,9 +533,9 @@ Password: $VPN_PASSWORD
|
||||
|
||||
Write these down. You'll need them to connect!
|
||||
|
||||
Important notes: https://git.io/vpnnotes
|
||||
Setup VPN clients: https://git.io/vpnclients
|
||||
IKEv2 guide: https://git.io/ikev2
|
||||
Important notes: vpnsetup.net/notes
|
||||
Setup VPN clients: vpnsetup.net/clients
|
||||
IKEv2 guide: vpnsetup.net/ikev2
|
||||
|
||||
================================================
|
||||
|
||||
|
@ -28,9 +28,9 @@ YOUR_IPSEC_PSK=''
|
||||
YOUR_USERNAME=''
|
||||
YOUR_PASSWORD=''
|
||||
|
||||
# Important notes: https://git.io/vpnnotes
|
||||
# Setup VPN clients: https://git.io/vpnclients
|
||||
# IKEv2 guide: https://git.io/ikev2
|
||||
# Important notes: vpnsetup.net/notes
|
||||
# Setup VPN clients: vpnsetup.net/clients
|
||||
# IKEv2 guide: vpnsetup.net/ikev2
|
||||
|
||||
# =====================================================
|
||||
|
||||
@ -660,9 +660,9 @@ Password: $VPN_PASSWORD
|
||||
|
||||
Write these down. You'll need them to connect!
|
||||
|
||||
Important notes: https://git.io/vpnnotes
|
||||
Setup VPN clients: https://git.io/vpnclients
|
||||
IKEv2 guide: https://git.io/ikev2
|
||||
Important notes: vpnsetup.net/notes
|
||||
Setup VPN clients: vpnsetup.net/clients
|
||||
IKEv2 guide: vpnsetup.net/ikev2
|
||||
|
||||
================================================
|
||||
|
||||
|
@ -27,9 +27,9 @@ YOUR_IPSEC_PSK=''
|
||||
YOUR_USERNAME=''
|
||||
YOUR_PASSWORD=''
|
||||
|
||||
# Important notes: https://git.io/vpnnotes
|
||||
# Setup VPN clients: https://git.io/vpnclients
|
||||
# IKEv2 guide: https://git.io/ikev2
|
||||
# Important notes: vpnsetup.net/notes
|
||||
# Setup VPN clients: vpnsetup.net/clients
|
||||
# IKEv2 guide: vpnsetup.net/ikev2
|
||||
|
||||
# =====================================================
|
||||
|
||||
@ -624,9 +624,9 @@ Password: $VPN_PASSWORD
|
||||
|
||||
Write these down. You'll need them to connect!
|
||||
|
||||
Important notes: https://git.io/vpnnotes
|
||||
Setup VPN clients: https://git.io/vpnclients
|
||||
IKEv2 guide: https://git.io/ikev2
|
||||
Important notes: vpnsetup.net/notes
|
||||
Setup VPN clients: vpnsetup.net/clients
|
||||
IKEv2 guide: vpnsetup.net/ikev2
|
||||
|
||||
================================================
|
||||
|
||||
@ -634,8 +634,8 @@ EOF
|
||||
if [ ! -e /dev/ppp ]; then
|
||||
cat <<'EOF'
|
||||
Warning: /dev/ppp is missing, and IPsec/L2TP mode may not work. Please use
|
||||
IKEv2 (https://git.io/ikev2) or IPsec/XAuth mode to connect.
|
||||
Debian 11/10 users, see https://git.io/vpndebian10
|
||||
IKEv2 (vpnsetup.net/ikev2) or IPsec/XAuth mode to connect.
|
||||
Debian 11/10 users, see vpnsetup.net/debian10
|
||||
|
||||
EOF
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user