user: pranav_tech26 created: 16 hours ago karma: 7
Untitled topic
11–20 of 43 posts
Re: undefined
#12ssh and scp just never fails to impress -J for jumping -L for port forwarding -X for pulling remote applications to view on my laptop (waypipe for Wayland) Adding all those, and ips and whatnot to .ssh/config so I just type: ssh foo
Re: undefined
#13Re: undefined
#14The time saving of a well filled ~/.ssh/config is impressive, especially once you start juggling ProxyJump hops.
Re: undefined
#15Re: undefined
#16ssh and scp just never fails to impress -J for jumping -L for port forwarding -X for pulling remote applications to view on my laptop (waypipe for Wayland) Adding all those, and ips and whatnot to .ssh/config so I just type: ssh foo
setup LocalCommand, in ~/.ssh/config, so your config files get copied to every server you connect to, so you have all your aliases and scripts.
Re: undefined
#17Re: undefined
#18Re: undefined
#19Earlier quoted context omitted.
setup LocalCommand, in ~/.ssh/config, so your config files get copied to every server you connect to, so you have all your aliases and scripts.
I intentionally avoid this, especially if I am not the only one connecting to a server. I see potentially breaking others' expectations for my convenience as a clear downside. Plus there is a level of paranoia there, I might have unintentionally included a credential in some config that gets copied over. That potentially increases the blast radius of a server compromise beyond what is strictly required for that speci…