Re: SSH config in /etc/ssh/ rather than /etc?

2023-04-11 Thread Backwoods BC via Cygwin
On Tue, Apr 11, 2023 at 6:28 PM Philippe Cerfon via Cygwin wrote: > I've just wondered whether Cygwin packages could be changed to > place/expect any SSH config files in /etc/ssh, just as virtually any > Linux distribution seems to do? :-) Symlinks are your friend. You can even use real (Windows)

Re: ssh config

2007-07-02 Thread Karl M
Hi All... From: Brian Dessent Subject: Re: ssh config Date: Mon, 02 Jul 2007 15:23:05 -0700 René Berber wrote: > What you did in ~/.ssh/config was add the parameter (-X) for the specific host, > that AFAIK cannot be done globally (unless globing is accepted in the same > co

Re: ssh config

2007-07-02 Thread Brian Dessent
René Berber wrote: > What you did in ~/.ssh/config was add the parameter (-X) for the specific > host, > that AFAIK cannot be done globally (unless globing is accepted in the same > config file). Sure you can, the following in ~/.ssh/config: Host = * ForwardX11 = yes ForwardX11Trusted = yes ..

Re: ssh config

2007-07-02 Thread René Berber
Frederich, Eric P21322 wrote: > Is there a way to enable X11 forwarding by default so that I don't have > to run "ssh -XY hostname" and can just run "ssh hostname"? It doesn't work like that, those are two different commands, only the first creates the tunnel used by X11. > I found a way for me

Re: ssh config

2007-07-02 Thread Igor Peshansky
On Mon, 2 Jul 2007, Frederich, Eric P21322 wrote: > Is there a way to enable X11 forwarding by default so that I don't have > to run "ssh -XY hostname" and can just run "ssh hostname"? > I found a way for me to do it via a ~/.ssh/config file but I'm looking > for a way to do it globally. I have s