Displaying 3 results from an estimated 3 matches for "controlallowgroup".
Did you mean:
controlallowgroups
2006 Feb 10
0
OpenSSH ControlAllowUsers, et al Patch
Attached (and inline) is a patch to add the following config options:
ControlBindMask
ControlAllowUsers
ControlAllowGroups
ControlDenyUsers
ControlDenyGroups
It pulls the peer credential check from client_process_control() in ssh.c,
and expounds upon it in a new function, client_control_grant().
Supplemental groups are not checked in this patch. I didn't feel comfortable
taking a shot at defining the semantics...
2009 Sep 06
1
Integration of streamlocal patch
Hello,
there is a patch which allows redirecting UNIX domain sockets here:
http://www.25thandclement.com/~william/projects/streamlocal.html<http://www.25thandclement.com/%7Ewilliam/projects/streamlocal.html>
We really need it in our institution.
It's for OpenSSH 4.4 but I managed to adopt it for 4.7p1 included in Ubuntu
8.04.
2006 Apr 22
1
[Patch] Unix Domain Socket Forwarding
...ts. I'll
seperate them out when I port this over to the main OpenSSH source in
OpenBSD. So, the following options are honored with this patch:
Client:
-> old stuff <-
ControlBindMask Mask to use when binding a control socket
ControlAllowUsers List of users and uids allowed to connect
ControlAllowGroups List of groups and gids allows to connect
ControlDenyUsers List of users and uids disallowed
ControlDenyGroups List of groups and gids disallowed
-> new stuff <-
StreamLocalBindMask Mask to use when binding a forward socket
StreamLocalBindUnlink Attempt an unlink before binding
FakeStr...