Displaying 9 results from an estimated 9 matches for "idend".
Did you mean:
ident
2024 Mar 12
1
PrivateKeyCommand config idea
BTW not for your usecase with the decryption, but if people want to dynamically create/provision short lived
keys, they could use ?match host * exec gen-key.sh %s? config to run a program before each connection.
However it can?t stdout the key material, but what it could do is update a temporary Idendity file or
push it short-lived with ssh-add to the running (standard) agent.
openssh at tr.id.au wrote on 11. Mar 2024 22:15 (GMT +01:00):
> Hmm, okay, I just realized the protocol has a full specification at
> https://datatracker.ietf.org/doc/html/draft-miller-ssh-agent. Would it be
> p...
2007 May 31
0
[1039] trunk/wxruby2/swig/Events.i: Remove some debugging output
...an class="cx">
</span><span class="lines">@@ -299,7 +297,6 @@
</span><span class="cx">
</span><span class="cx"> int idStart = NUM2INT(argv[0]);
</span><span class="cx"> int idEnd = NUM2INT(argv[1]);
</span><del>- //printf("evt_with_id(%d) %s\n", id, rb_block_given_p() ? "with block" : "");
</del><span class="cx">
</span><span class="cx"> internal_connect(self, idStart, idEnd, event...
2019 Dec 01
2
update CentOS 7 at Nov 05 2019
yum update was run
23.10.19 and then
05.11.19
to the beginning of the update 5.11.2019 kernel logging to
/var/log/messages was ok.
During the update at 5.11.2019 logging to /var/log/messages finished. I
persume, this bug began during processing updates. yum-log shows:
...........
Nov 05 14:56:54 Installed: virt-viewer-5.0-15.el7.x86_64
Nov 05 15:59:28 Installed: nbdkit-1.8.0-1.el7.x86_64
2024 Mar 11
1
PrivateKeyCommand config idea
Hey Damien,
> Would you be able to do this using the ssh-agent protocol? It's
> relatively easy to make custom agent implentations for special use
> cases, e.g. using https://pkg.go.dev/golang.org/x/crypto/ssh/agent#Agent
Hmm, okay, I just realized the protocol has a full specification at https://datatracker.ietf.org/doc/html/draft-miller-ssh-agent. Would it be possible to get that
2024 Mar 12
0
PrivateKeyCommand config idea
BTW not for your usecase with the decryption, but if people want to dynamically create/provision short lived
keys, they could use ?match host * exec gen-key.sh %s? config to run a program before each connection.
However it can?t stdout the key material, but what it could do is update a temporary Idendity file or
push it short-lived with ssh-add to the running (standard) agent.
openssh at tr.id.au wrote on 11. Mar 2024 22:15 (GMT +01:00):
> Hmm, okay, I just realized the protocol has a full specification at
> https://datatracker.ietf.org/doc/html/draft-miller-ssh-agent. Would it be
> p...
2024 Mar 12
1
PrivateKeyCommand config idea
...with the decryption, but if people want to
> dynamically create/provision short lived
> keys, they could use ?match host * exec gen-key.sh %s? config to run a
> program before each connection.
> However it can?t stdout the key material, but what it could do is
> update a temporary Idendity file or
> push it short-lived with ssh-add to the running (standard) agent.
I posted earlier about this -- it works very poorly. In particular, it runs even in cases where nothing is trying to connect. For example:
ssh -O exit host
I personally think the ssh-agent suggestion works poorly...
2002 Feb 12
4
Rsync with script
Hi,
I am trying to mirror a server every night using rsync. I have to backup
multiple directories and multiple individual files. I also want to use ssh
as transport.
The problem is that I cannot get ssh to work without asking password for
each step. I tried the public key thing but it doesnt work.
Can some one give instructions for a layman like me.
Also I want to know how to pass argument to
2007 May 29
0
[1035] trunk/wxruby2/swig/classes/EvtHandler.i: Removed a heap of redundant stuff that''s been #if 0''d for a while
...Type);
- return Qnil;
-}
-
-static VALUE internal_evt_with_id_range(int argc, VALUE *argv, VALUE self,
- wxEventType eventType)
-{
- if (argc != 2)
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
-
- int idStart = NUM2INT(argv[0]);
- int idEnd = NUM2INT(argv[1]);
- //printf("evt_with_id(%d) %s\n", id, rb_block_given_p() ? "with block" : "");
-
- internal_connect(self, idStart, idEnd, eventType);
- return Qnil;
-}
-
-static VALUE internal_evt_no_parameters(int argc, VALUE *argv, VALUE self,
-...
2007 Jun 25
0
[1066] trunk/wxruby2/swig: Move EVT constants in swig/classes/Event.i; add a few missing ones
...Type);
- return Qnil;
-}
-
-static VALUE internal_evt_with_id_range(int argc, VALUE *argv, VALUE self,
- wxEventType eventType)
-{
- if (argc != 2)
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
-
- int idStart = NUM2INT(argv[0]);
- int idEnd = NUM2INT(argv[1]);
-
- internal_connect(self, idStart, idEnd, eventType);
- return Qnil;
-}
-
-static VALUE internal_evt_no_parameters(int argc, VALUE *argv, VALUE self,
- wxEventType eventType)
-{
- if (argc != 0)
- rb_raise(rb_eArgError, "wrong # of arguments(%d for...