Skip to content

Instantly share code, notes, and snippets.

@sriprasanna
Last active August 29, 2015 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sriprasanna/687e7fc071edf69a172a to your computer and use it in GitHub Desktop.
Save sriprasanna/687e7fc071edf69a172a to your computer and use it in GitHub Desktop.
Install sshuttle on mac
#/bin/bash
echo "Installing PyXAPI"
cd /tmp
curl -O http://www.pps.univ-paris-diderot.fr/~ylg/PyXAPI/PyXAPI-0.1.tar.gz
tar -xzvf PyXAPI-0.1.tar.gz
cd PyXAPI-0.1
./configure
make
sudo make install
cd ..
echo "Installing autossh"
brew update
brew install autossh
echo "Getting sshuttle"
sudo rm -rf /opt/sshuttle
sudo git clone https://github.com/pthrasher/sshuttle.git /opt/sshuttle
cd /opt/sshuttle/src/
ln -s /opt/sshuttle/src/sshuttle /usr/local/bin/sshuttle
echo "sshuttle successfully installed!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment