
openvpn
List of commands for openvpn:
-
openvpn:tldr:18370 openvpn: Try to set up a peer-to-peer tunnel on bob.example.com host with a static key.$ sudo openvpn --remote ${alice-example-com} --dev ${tun1} --ifconfig ${10-4-0-1} ${10-4-0-2} --secret ${path-to-key}try on your machineexplain this command
-
openvpn:tldr:52cc0 openvpn: Create a cryptographic key and save it to file.$ openvpn --genkey secret ${path-to-key}try on your machineexplain this command
-
openvpn:tldr:91f6f openvpn: Try to set up an insecure peer-to-peer tunnel on bob.example.com host.$ sudo openvpn --remote ${alice-example-com} --dev ${tun1} --ifconfig ${10-4-0-1} ${10-4-0-2}try on your machineexplain this command
-
openvpn:tldr:c8987 openvpn: Connect to server using a config file.$ sudo openvpn ${path-to-client-conf}try on your machineexplain this command