source: locker/bin/scripts-ssh @ 458

Last change on this file since 458 was 438, checked in by andersk, 17 years ago
The time has come that sshmic fails to work on more machines than it is necessary on. Replace it with an ssh wrapper script that also sets various ssh options.
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 291 bytes
Line 
1#!/bin/sh
2
3exec ssh \
4        -o GSSAPIAuthentication=yes \
5        -o GSSAPIDelegateCredentials=no \
6        -o PreferredAuthentications=gssapi-with-mic \
7        -o ForwardX11=no \
8        -o GlobalKnownHostsFile=/afs/athena.mit.edu/contrib/scripts/ssh/known_hosts \
9        -o UserKnownHostsFile=/dev/null \
10        scripts.mit.edu "$@"
Note: See TracBrowser for help on using the repository browser.