I need to disable all CPU intensive aspects of OpenVPN, I understand this defeats the point of using a VPN, but I don't use a VPN to be "secure", per se. I have been forced into using a VPN because of my ISPs abysmal routing, so my only solution is to connect to a local server which provides better routing, and because my router cannot handle OpenVPN's encryption algorithms, I get a fraction of my internet speed. I have access to the .conf file in /etc/openvpn but haven't been able to find any useful tutorial on how to disable encryption. Heres what I have right now:
Disabled the cipher but it's still using this thing called "Encrypt channel" which I don't know how to get rid of. The OpenVPN official documentation is a mess, can't really find any help on there. Any help would be appreciated.
port 60646
proto udp
dev tun
user nobody
group nogroup
persist-key
persist-tun
keepalive 10 120
topology subnet
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
push "dhcp-option DNS 1.0.0.1"
push "dhcp-option DNS 1.1.1.1"
push "redirect-gateway def1 bypass-dhcp"
dh none
ecdh-curve prime256v1
tls-crypt tls-crypt.key 0
crl-verify crl.pem
ca ca.crt
cert server_f2i6FqpKuVdad786.crt
key server_f2i6FqpKuVdad786.key
auth none
#;auth SHA256
cipher none
#;cipher AES-128-GCM
ncp-disable
#;ncp-ciphers AES-128-GCM
#;tls-server
#;tls-version-min 1.2
#;tls-cipher TLS-ECDHE-ECDSA-WITH-AES-128-GCM-SHA256
status /var/log/openvpn/status.log
verb 1
proto udp
dev tun
user nobody
group nogroup
persist-key
persist-tun
keepalive 10 120
topology subnet
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
push "dhcp-option DNS 1.0.0.1"
push "dhcp-option DNS 1.1.1.1"
push "redirect-gateway def1 bypass-dhcp"
dh none
ecdh-curve prime256v1
tls-crypt tls-crypt.key 0
crl-verify crl.pem
ca ca.crt
cert server_f2i6FqpKuVdad786.crt
key server_f2i6FqpKuVdad786.key
auth none
#;auth SHA256
cipher none
#;cipher AES-128-GCM
ncp-disable
#;ncp-ciphers AES-128-GCM
#;tls-server
#;tls-version-min 1.2
#;tls-cipher TLS-ECDHE-ECDSA-WITH-AES-128-GCM-SHA256
status /var/log/openvpn/status.log
verb 1
Disabled the cipher but it's still using this thing called "Encrypt channel" which I don't know how to get rid of. The OpenVPN official documentation is a mess, can't really find any help on there. Any help would be appreciated.