Created
February 5, 2018 18:16
-
-
Save scjody/287f8ca88d0055b7da9969357b762e7f to your computer and use it in GitHub Desktop.
EMACS TRAMP setup for "gcloud compute ssh"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; TRAMP gcloud ssh | |
| (add-to-list 'tramp-methods | |
| '("gssh" | |
| (tramp-login-program "gssh") | |
| (tramp-login-args (("%h"))) | |
| (tramp-async-args (("-q"))) | |
| (tramp-remote-shell "/bin/sh") | |
| (tramp-remote-shell-args ("-c")) | |
| (tramp-gw-args (("-o" "GlobalKnownHostsFile=/dev/null") | |
| ("-o" "UserKnownHostsFile=/dev/null") | |
| ("-o" "StrictHostKeyChecking=no"))) | |
| (tramp-default-port 22))) |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this to your
.emacsfile to add agsshmethod to TRAMP that connects to GCE instances on Google Cloud:/gssh:some-instance:/path/to/filegsshis a script I wrote that should be in your path. If you don't findgsshuseful, you can replace it withgcloud compute ssh.Based on https://qiita.com/tanatana/items/218b19808f2428b125fe