Assorted notes on my development experiences, and other useful workflow and environment tips, for Windows and Linux.
nmcli con up uuid <your-uuid-here>
nmcli -p con list
nmcli con down uuid <your-uuid-here>
#!/bin/bash#Use this script for automatic VPN Connection on startup for example:UUID=`nmcli -p con list |& grep -Po 'Private Internet Access SSL \K.*?(?= )'`nmcli con up uuid "$UUID"
Please leave a comment if you find this blog helpful or interesting! I'd love to hear from you!
#!/bin/bash
ReplyDelete#Use this script for automatic VPN Connection on startup for example:
UUID=`nmcli -p con list |& grep -Po 'Private Internet Access SSL \K.*?(?= )'`
nmcli con up uuid "$UUID"