similar to: OpenSSH with "resumable" functionality

Displaying 20 results from an estimated 100 matches similar to: "OpenSSH with "resumable" functionality"

2010 Aug 02
7
Persistent SSH sessions
Hi all I have an ADSL modem which reboots when there is a power cut and the inverter (UPS) kicks in. Internet access is down for a duration of 1 to 2 minutes while the modem boots. I have many SSH tunnels and shells active. Due to the default "TCPKeepAlive On" setting, these sessions are terminated almost immediately. I tried the following configuration: sshd_config on server:
2012 Jan 25
0
Winbind multiple client authentication
Hello, I have two CentOS 5.6 clients I'm trying to join to my Active Directory domain for authentication. I have configured my smb.conf like: realm = SYSLAB.DC idmap backend = rid idmap uid = 10000-20000 idmap gid = 10000-20000 and have been able to join both to the domain via: kinit Administrator at SYSLAB.DC net ads join -U Administrator Then I added krb5 to pam.d auth section and
2017 Mar 15
2
Relaiable ssh tunnel via systemd
Am 14.03.2017 um 21:43 schrieb Nico Kadel-Garcia: > On Tue, Mar 14, 2017 at 4:20 PM, Thomas G?ttler > <guettliml at thomas-guettler.de> wrote: >> >> >> >> Am 14.03.2017 um 15:10 schrieb Nico Kadel-Garcia: >>> Look into the "autossh" program, which is very good to manage and >>> maintain such tunnels. >>> >> >> Hi
2017 Mar 14
4
Relaiable ssh tunnel via systemd
Am 14.03.2017 um 15:10 schrieb Nico Kadel-Garcia: > Look into the "autossh" program, which is very good to manage and > maintain such tunnels. > Hi Nico and other ssh users, Systemd restarts the ssh if it terminates. AFAIK this is all that is needed. But maybe I am missing something. Is there a feature of autossh that I don't get with systemd? --
2019 Mar 29
2
Call for testing: OpenSSH 8.0
Thanks for testing - are you able to see if there's anything in the server logs? I've just committed some extra verbosity in the client's log messages that might clarify where it is exiting (patch attached). -d On Fri, 29 Mar 2019, Adam Eijdenberg wrote: > On Wed, Mar 27, 2019 at 10:04 PM Damien Miller <djm at mindrot.org> wrote: > > > > OpenSSH 8.0p1 is almost
2011 Jul 04
10
[Bug 1917] New: Escape sequence (~) doesn't work right with ControlMaster/ControlPersist connections
https://bugzilla.mindrot.org/show_bug.cgi?id=1917 Bug #: 1917 Summary: Escape sequence (~) doesn't work right with ControlMaster/ControlPersist connections Classification: Unclassified Product: Portable OpenSSH Version: 5.8p1 Platform: All OS/Version: All Status: NEW Severity: normal
2014 Sep 18
1
mirrorlist returns wrong servers
Hi, We're using CentOS on various servers in Japan. Recently, I found that mirrorlist.centos.org returns servers in China. It makes "yum update" slow. This problem occurs on "update" repo. Our tries and results are follows: ## "os" repository $ curl "http://mirrorlist.centos.org/?release=6.5&arch=x86_64&repo=os"
2012 Aug 31
2
How to detect if key ssh-add'ed with '-c' or without?
Hi all. Some background: I'm using my own wrapper script for ssh that deals with multitude of IP addresses, user accounts, keys and other ssh parameters for bunch of managed hosts. On X session start i (actually, my script) load all my private keys with 'ssh-add -c', to get confirmation on every key usage. This works bad with autossh, so i would like to add some logic: if I specify
2017 Mar 14
3
Relaiable ssh tunnel via systemd
We try to run a reliable ssh tunnel vis systemd. This is the unit configuration file: {{{ [Unit] Description=Tunnel For %i After=network.target [Service] User=autossh ExecStart=/usr/bin/ssh -o "ExitOnForwardFailure yes" -o "ServerAliveInterval 60" -N -R 40443:installserver:40443 -R 8080:installserver:8080 ExecStartPre=-/usr/bin/ssh tunnel@%i "for pid in $$(ps -u
2005 May 19
3
Bug#309772: please add ignore lines for autossh
Package: logcheck-database Severity: wishlist Hi! if autossh debug is enabled it logs to syslog, thus the messages go thru logcheck, messages are in this form May 19 14:02:55 sagara autossh[1909]: port set to 0, monitoring disabled so this is the ignore line ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ autossh\[[0-9]+\]: .*$ thanks, filippo -------------- next part -------------- A non-text attachment
2018 Feb 13
4
Problem with ssh disconnecting
On 02/12/2018 07:24 PM, Liam O'Toole wrote: > On 2018-02-12, H <agents at meddatainc.com> wrote: >> Running CentOS 7 on workstation and having a problem with ssh >> disconnects. My ssh_config contains: >> >> Host * >> TCPKeepAlive yes >> ServerAliveInterval 30 >> ServerAliveCountMax 300 >> >> and sshd_config on the server contains:
2003 Sep 28
1
Re: [theora] xiph.org irc channels moving
I'd just like to throw my 2 cents in here. I can understand the need to drop a xiph irc server. However, I do take issue with moving to Freenode. The reason that we moved so long ago (as I understand it) is that an overwhelming flood of politics made real vorbis discussion uncomfortable. A few people took things personally and acted out, and pretty soon everybody was on edge. Just looking
2003 Sep 28
1
Re: [theora] xiph.org irc channels moving
I'd just like to throw my 2 cents in here. I can understand the need to drop a xiph irc server. However, I do take issue with moving to Freenode. The reason that we moved so long ago (as I understand it) is that an overwhelming flood of politics made real vorbis discussion uncomfortable. A few people took things personally and acted out, and pretty soon everybody was on edge. Just looking
2017 Nov 15
7
How to maintain a persistent SSH connection?
Hello, I'm tasked with establishing a persistent SSH connection across a very unreliable link, for a remote port forward (always port 2217). I figured I'd use ServerAliveInterval to make sure that the ssh(1) process dies when the connection appears down, and I use systemd to restart it in this case. This works fine. What does not work fine, however, is the server-side. If the connection
2013 Mar 11
3
Restructure puppet modules
So far we have a similar situation, for each different server one fabric and one puppet file, where the fabric file simply applies it in a brutal way. with settings(user=''root''): put(''qa.pp'', ''qa.pp'') put(''puppet apply qa.pp'') And puppet files don''t use anything like classes or modules, but
2018 Feb 12
4
Problem with ssh disconnecting
Running CentOS 7 on workstation and having a problem with ssh disconnects. My ssh_config contains: Host * TCPKeepAlive yes ServerAliveInterval 30 ServerAliveCountMax 300 and sshd_config on the server contains: TCPKeepAlive yes ClientAliveInterval 60 ClientAliveCountMax 300 Have I missed any setting needed to prevent these random disconnects? I don't think there is anything wrong with the
2019 Jul 27
0
Correct, resumable, large-file flags
Hi On Fri, 26 Jul 2019 20:15:27 +0100 Mark Raynsford via rsync wrote: > I want to mirror a directory A on server www1.example.com to a > directory B on www2.example.com. The directory A contains very > large but essentially read-only files. A server process on > www1.example.com periodically creates new large files and deletes old > ones. I want to synchronize the directories
2019 Jul 27
1
Correct, resumable, large-file flags
On 2019-07-27T07:59:56 +0200 Francis.Montagnac at inria.fr wrote: > > Try: > > rsync -avz --delete-after --delay-updates --partial /A/ www2.example.com:/B/ > > The man indicate also for --delay-updates: > > See also the "atomic-rsync" perl script in the "support" subdir > for an update algorithm that is even more atomic (it
2019 Jul 26
2
Correct, resumable, large-file flags
Hello. I'm a long-time rsync user, but I've encountered a case today and I just can't seem to get rsync to do the right thing. I want to mirror a directory A on server www1.example.com to a directory B on www2.example.com. The directory A contains very large but essentially read-only files. A server process on www1.example.com periodically creates new large files and deletes old
2010 Apr 18
4
OpenSSH with "resumable" functionality
Dear All: I was wondering if it might at all be possible to have the following functionality in OpenSSH: (i) upon "timeout" of connection (say 2-5 seconds) disconnect (ii) keep trying to reconnect (iii) upon reconnection, resume session exactly where started I realize GNU screen solves (iii), although I am interested in a slightly different purpose (nxssh vs openssh). However, I am