search for: sshuser

Displaying 20 results from an estimated 34 matches for "sshuser".

2009 Oct 22
2
useradd: invalid numeric argument 'someuser'
...a mistake or is this a bug? I''ve experienced this issue using 0.24.8 from EPEL also. Thu Oct 22 13:59:43 -0700 2009 //user::virtual-users_groups/User [someuser]/ensure (err): change from absent to present failed: Could not create user someuser: Execution of ''/usr/sbin/useradd -G sshusers,someuser -d /home/someuser -u 4061 -s /bin/bash -c Some User - p $1$VezlG/$SSk0bJto9WNW4NRatiZJP1 -m someuser'' returned 3: useradd: invalid numeric argument ''someuser'' @user { "someuser": ensure => "present", uid => "40...
2014 Sep 09
6
[Bug 2273] New: The group of the tunnel device needs to match with the group of the connecting ssh user
...OS: Linux Status: NEW Severity: normal Priority: P5 Component: sshd Assignee: unassigned-bugs at mindrot.org Reporter: joe9mail at gmail.com Hello, When a tun0 device is created with the below commands on the server: $ id sshuser uid=100(sshuser) gid=100(sshusers) groups=100(sshusers) $ ip tuntap add dev tun0 mode tun user sshuser group users $ ip link set dev tun0 up $ ip addr add dev tun0 local 10.8.0.1 peer 10.8.0.2 and ssh is started with this command from the client: $ ssh -NTC -w 0:0 -o Tunnel=point-to-point sshuse...
2005 Jul 18
2
RSync and SSH problems
...(for SSH). But for the sake of testing I've also opened 873. I can connect directly to my rsync server (bypassing ssh) via the following command: rsync *.* user@host.com::module Works like a charm. However, when I try what I believe to be the correct SSH syntax: rsync -av --rsh="ssh -l sshuser" *.* user@host.com::module I get the following error: user@host.com's password: (enter it correctly) rsync: read error: Connection reset by peer (104) rsync error: error in rsync protocol data stream (code 12) at io.c(584) I've also tried just SSH'ing into the server and it work...
2009 Mar 02
31
Using Augeas type to update sshd_config's AllowGroups
Hey gang, I seem to be having a brain disconnect on how to get the Augeas type to manage things that have multiple values (i.e. an Augeas tree) via Puppet. If I run this in augtool: augtool> set /files/etc/ssh/sshd_config/AllowGroups/1000 sshuser augtool> save I see this in /etc/ssh/sshd_config: AllowGroups sshuser However, if I try this in an Augeas type: augeas { "sshd_conf_group_sshuser": context => "/files/etc/ssh/sshd_config", changes => "set /files/etc/ssh/sshd_config/AllowGroups/10000...
2006 Mar 09
0
rsync failures through ssh tunnels
...ml though there is NO middle system. heres the script with the commands just echoing the commands to the screen. What I am finding is that even after ssh sets up the tunnels that rsync sits in a sleep state forever. Any pointers will be greatly appreciated. #!/bin/sh # by db # date: 20060306 # sshuser="sshuser" rsyncuser="rsuser" rhost="rhost.asu.edu" pforward="8730" rport="873" sshoptions="-fN -L $pforward:localhost:$rport " module="home" dest="uc-sirc1/home/" echo "Connecting to host $rhost" echo /usr/bin...
2014 Sep 09
9
[Bug 2272] New: Global "PermitTunnel Yes" required to connect to a tunnel
...Status: NEW Severity: major Priority: P5 Component: sshd Assignee: unassigned-bugs at mindrot.org Reporter: joe9mail at gmail.com Hello, When a tun0 device is created with the below commands on the server: ip tuntap add dev tun0 mode tun user sshuser group sshusers ip link set dev tun0 up ip addr add dev tun0 local 10.8.0.1 peer 10.8.0.2 and ssh is started with this command from the client: ssh -NTC -w 0:0 -o Tunnel=point-to-point sshuser@<ip-address> Working extract from sshd_config: PermitTunnel yes Match User sshuser PermitTunn...
2006 Mar 23
1
error in protocol stream
I am trying to use the syntax: rsync -av -e "ssh -l ssh-user" rsync-user@host::module /dest found at http://rsync.samba.org/ftp/rsync/rsync.html but am getting the following: rsync -av -e "ssh -l sshuser" rhost.asu.edu::home uc-sirc1/home/ rsync: connection unexpectedly closed (0 bytes received so far) [receiver] rsync error: error in rsync protocol data stream (code 12) at io.c(434) There is an rsync daemon running on rhost.asu.edu and that has a module named home. This is a file server box...
2019 Sep 23
5
Dovecot UIDs and POP.
On 22/09/2019 4:08 AM, @lbutlr via dovecot wrote: >> So while I was migrating the mail, I did try for a while to understand the format of the UID files, but failed to do so in the available time, so the client just had to deal with duplicate emails. But now the smoke has cleared, I'd like to understand the problem a little better, and I was hoping someone on this forum could explain it
2011 Jun 30
2
Limit SSH access for users from defined source address
Hi all, let me describe my environment and problem. System is RHEL 5.6 with latest stable OpenSSH. In sshd_config is defined "AllowGroups sshusers" but I need limitation to some of users in group to have access only from defined IP address. As I know this can be setup in sshd_config only for AllowUsers, but users in group are changed so I must use allowgroups instead of allowusers. I have modified /etc/pam.d/sshd #%PAM-1.0 auth...
2019 Sep 23
0
Dovecot UIDs and POP.
..."StrictHostKeyChecking=no" admin at 100.110.120.130 > > I tried a few options to tell it where to put the mail, but dovecot on the target server didn't seem to know where each account was located. doveadm backup -u test at domain.com <mailto:test at domain.com> -R ssh sshuser at remote.com <mailto:sshuser at remote.com> "sudo /usr/bin/doveadm dsync-server -u test at domain.com <mailto:test at domain.com>" run this on the target system to which you are migrating to. HTH Sami -------------- next part -------------- An HTML attachment was scrubbed...
2003 Apr 12
1
rsync over ssh question
...p a SSH tunnel over the Internet to connect to a firewall onto which an SSH daemon is running - Through the SSH tunnel I want to send rsync traffic to a backup server, sitting behind the firewall and running rsync in daemon mode Here is the command I tried to use : rsync -e "ssh -p 1142 -l sshuser [firewallip] -" -av --progress --delete -z ./ rsyncuser@[backupserverip]:testdir This gives me a bash error on "-" after I successfully logged on to the ssh server. I verified that the rsync daemon is running correctly. No firewall rules are blocking rsync traffic from the firewall...
2015 Feb 10
2
Why there is a difference in MaxAuthTries behavior ?
...nnects after 3 attempts. When wrong password is given from an openssh client 6.6 version, it disconnects after 5 attempts. What is the reason for this difference ? Shouldn't the behavior be the same, across both the clients, since MaxAuthTries is a server side parameter? Regards Opensshuser
2020 May 20
1
Re: dsync “destination” argument
...ibed in dsync?s man page. I just want to be sure: is this a supported use of dsync? >> >> Thank you! > > > Is there any reason why you are doing it this way and not using it the way it is usually used? backup does not support -1 btw. > > doveadm backup -u john -R ssh sshuser at remote "sudo /usr/bin/doveadm dsync-server -u john" Isn?t this actually the same syntax that I?m asking about, where <destination> is a command name and arguments? I guess the documentation is just in want of emendation to mention this usage? -FG
2006 Dec 21
1
DO NOT REPLY [Bug 4303] New: pre-xfer exec prevents output redirection of invoked commands
...ar/lib/systemimager/backup read only = true use chroot = true list = true dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz the invoke_trigger script will trigger machines by using an ssh connection: ssh -qi privatekey -o StrictHostKeyChecking=no -l sshuser server1 backup > backup.sql ssh -qi privatekey -o StrictHostKeyChecking=no -l sshuser server2 backup the backup command is a script that will be executed on the corresponding machine. When the backup script generates output to stdout, it won't be catched by the ssh in the invoke_trigger scr...
2020 May 16
2
dsync “destination” argument
Hello, Some code that I didn?t write but am maintaining passes a local script?s path as dsync?s ?destination? argument, like so: dsync -D -u john -v backup -R -1 "/code/dsync_client.pl" 127.0.0.1 john at mydomain.org dsync_client.pl establishes a TCP connection with a remote dsync process then acts as a proxy between the two dsync processes. ?127.0.0.1? and ?john at mydomain.org?
2006 Nov 02
1
Using perl-Net-SSH-Perl with pubkey authentication under CGI.
...in]$ cat perl-net-ssh-perl-test.pl #!/usr/bin/perl print "Content-type: text/html\n\n"; print "<HEAD><TITLE>Quick Test</TITLE></HEAD>"; $ENV{HOME} = "/var/www"; $ENV{USER} = "apache"; use Net::SSH::Perl; $sshhost='target'; $sshuser='cgissh'; $sshport='22'; $sshprotocol='2'; $sshdebug='1'; $sshcipher='3des-cbc'; $sshconn = Net::SSH::Perl->new($sshhost, protocol=>$sshprotocol, port=>$sshport, debug=>$sshdebug, cipher=>$sshcipher); $sshconn->login($sshuser); my($out,$err)...
2002 May 03
2
Does OpenSSH have tcp_wrappers *built-in* or just compatibility?
I was under the impression it was just compatibility, and not actually built-in, but I thought I'd ask here and just make sure of what I'm saying. :) TIA. -- Austin Gonyou Systems Architect, CCNA Coremetrics, Inc. Phone: 512-698-7250 email: austin at coremetrics.com "It is the part of a good shepherd to shear his flock, not to skin it." Latin Proverb -------------- next part
2007 Nov 02
1
[Patch, enh] Permit host and IP addresses in (Allow|Deny)Groups
Hi, I ran across a case in which my server maintenance was simplified by using SSHD configuration options like this in sshd_config: AllowGroups admin at 192.168.0.* sshuser in much the same fashion as (Allow|Deny)Users. In this case, the goal is to provide access to administrators only from the local network, while allowing SSH users to login from anywhere. This (IMHO) simplifies access management by leveraging group membership more effectively. Anyway, I've att...
2010 Jul 16
5
2.6.0rc3 ssh_authorized_users/parsed.rb
...#39;') { super } Am I perhaps doing something wrong or do one or both of these appear to be a genuine bug(s)? -Jim Here''s the stack trace from puppetd -d output (filebucket is currently enabled; the output doesn''t change when filebucket is disabled): notice: /Stage[main]//Sshuser[someuser]/Ssh::Auth::Key[someuser@here.com]/Ssh_auth_key_server[someuser@here.com]/Ssh_authorized_key[someuser@here.com]/ensure: created debug: Flushing ssh_authorized_key provider target /home/someuser/.ssh/authorized_keys info: FileBucket got a duplicate file /home/someuser/.ssh/authorized_keys (...
2014 Sep 16
13
[Bug 2276] New: AuthorizedKeysCommand: add an option for alternate owner
https://bugzilla.mindrot.org/show_bug.cgi?id=2276 Bug ID: 2276 Summary: AuthorizedKeysCommand: add an option for alternate owner Product: Portable OpenSSH Version: 6.6p1 Hardware: Other OS: Linux Status: NEW Severity: enhancement Priority: P5 Component: sshd