i keep getting the tls error:
"TLS Error: TLS key negotiation failed to occur within 60 seconds (check your network connectivity)
TLS Error: TLS handshake failed"
1, i have no anti-virus software running
2, i allow anything to access port 1962 in windows firewall
3, i added port forwarding on my AT&T gateway
port 1962
proto udp4
dev tun
ca "C:\\Program Files\\OpenVPN\\config\\ca.crt"
cert "C:\\Program Files\\OpenVPN\\config\\server.crt"
key "C:\\Program Files\\OpenVPN\\config\\server.key" # This file should be kept secret
dh "C:\\Program Files\\OpenVPN\\config\\dh2048.pem"
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
keepalive 10 120
tls-auth ta.key 0 # This file is secret
cipher AES-256-GCM
persist-key
persist-tun
status openvpn-status.log
verb 3
explicit-exit-notify 1
client
proto udp4
remote 1.2.3.4 (my public ip) 1962
dev tun
resolv-retry infinite
nobind
persist-key
persist-tun
ca "C:\\Users\\vic\\OpenVPN\\config\\ca.crt"
cert "C:\\Users\\vic\\OpenVPN\\config\\taiwan.crt"
key "C:\\Users\\vic\\OpenVPN\\config\\taiwan.key"
remote-cert-tls server
tls-auth ta.key 1
cipher AES-256-GCM
verb 3
<ca>
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
</ca>
<cert>
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
</cert>
<key>
-----BEGIN ENCRYPTED PRIVATE KEY-----
...
-----END ENCRYPTED PRIVATE KEY-----
</key>
<tls-auth>
#
# 2048 bit OpenVPN static key
#
-----BEGIN OpenVPN Static key V1-----
...
-----END OpenVPN Static key V1-----
</tls-auth>
can somebody help?