Daily Archives: August 8, 2012


svn tunneling

subversion uses ssh. If ssh blocked from A to C, but A-> B and B->C is not blocked, setup tunneing:   1. on A: /etc/subversion/config in the [tunnel] section, add: ssh = $SVN_SSH ssh -o ControlMaster=no <machine B’s hostname> ssh -o ControlMaster=no   2. on B: /etc/ssh/ssh_config HostbasedAuthentication yes EnableSSHKeysign yes   3. on C […]