I occasionally need to be able to secure my traffic while I’m out and about. I’ve written the following script to automate Ubuntu desktop to configure and connect to a remote ssh host for system-wide proxying.
Let me know if you have any trouble with it.
#!/bin/bash | |
CURRENT=$(gsettings get org.gnome.system.proxy mode) | |
USER=USERNAME | |
SERVER=servername.tld | |
SOCKS_PORT=1080 | |
echo -e "\nCurrent proxy mode: $CURRENT" | |
echo -e "\nNote: This script will stop any current ssh connections." | |
read -p "Press any key to continue or Ctrl+C to cancel..." -n1 -s | |
echo -e "\nKilling any found ssh sessions...\n" | |
killall ssh | |
if [ $(echo $CURRENT) != "'manual'" ]; | |
then | |
gsettings set org.gnome.system.proxy.socks host '127.0.0.1' | |
gsettings set org.gnome.system.proxy.socks port $SOCKS_PORT | |
gsettings set org.gnome.system.proxy mode 'manual' | |
echo -e "\nConnecting to Proxy now. Press Ctrl+C to disconnect" | |
ssh -fNnD $SOCKS_PORT $USER@$SERVER | |
echo -e "\nForked ssh process to background. Rerun this script to undo proxy settings" | |
exit | |
fi | |
gsettings set org.gnome.system.proxy mode 'none' | |
echo -e "\nReset overall proxy settings to none. Rerun this script to initial connection" |