Picking up this thread I just found...
I have two locations (home and cottage) where I have had fiber at home for 8 years and just got fiber at the cottage.
At home I use an ASUS RT-AC86U (the topic of this thread) and at the cottage I have set up an ASUS RT-AC68U.
Ther cottage LAN and the home LAN use different network IP ranges (192.168.117.x and 192.168.119.x)
The cottage router connects to my home OpenVPN server (an Ubuntu Server 20.04.3) in order to connect the cottage LAN to the home LAN for all devices there.
And I have a ccd directive that issues an iroute when the cottage LAN connects in order for the home LAN devices to be able to access the cottage LAN devices.
Finally I have a route entry on my home router to direct the 192.168.117.x traffic via the OpenVPN server.
The VPN connection is only for the home LAN so all other traffic on the cottage LAN will travel through the router gateway to the Internet.
This works well in principle but transfers are a bit slow...
This is what I have done in the server side conf regarding cipher and routing etc after reading posts on page 2 of this thread:
Code:
cipher AES-256-CBC
#Disable compression and push this to the client
comp-lzo no
push "comp-lzo no"
client-config-dir /etc/openvpn/ccdl
route 192.168.117.0 255.255.255.0
client-to-client
push "route 192.168.117.0 255.255.255.0"
Additionally I have this in the ccd directive for the cottage router client where I have changed the cipher according to page 2 of this thread:
Code:
iroute 192.168.117.0 255.255.255.0
#Disable compression and push it to the client
comp-lzo no
push "comp-lzo no"
#Set different cipher for the ASUS router client
cipher AES-128-GCM
push "cipher AES-128-GCM"
And finally I have this in the client ovpn file:
Code:
cipher AES-256-CBC
comp-lzo
The client ovpn file was installed in the router
before I was aware of the transfer speed problems, that is why I have now changed it on the server side so it pushes the new cipher and comp settings on connection.
And this raises the question:
How can I check that this works?
The cottage is 100 km away and was set up with the fiber installation on Feb 9th, so now I have only LAN-LAN connectivity to it...
If I stop the VPN server service then the connection will obviously stop working, but I think that the client keeps on running for reconnection asap and I don't know if it will re-read the ovpn file content when it does.
Nor do I know if the server side will regard the reconnection as a new connection and push the new settings according to the ccd settings...
Any suggestions on how to proceed to get this working with the faster cipher?