search for: nssh

Displaying 13 results from an estimated 13 matches for "nssh".

Did you mean: nss
2009 Jul 21
0
[PATCH node] Adds a new kernel cmdline argument to toggle SSH password auth.
...password authentication" QUIT="Quit and Return To Menu" -while true; do - state="disabled" - /usr/bin/augtool get /files/etc/ssh/sshd_config/PasswordAuthentication|grep -q yes$ - if [ $? == 0 ]; then - state="enabled" - fi - printf "\nSSH password authentication is currently ${state}.\n\n" - - PS3="Please select an option: " - select option in "$PASSWORD" "$SSH" "$QUIT" - do - case $option in - $PASSWORD) set_password; break;; - $SSH) toggle_ssh; brea...
2009 Jul 22
1
Updated patch...
This patch obsoletes the previous, renaming the karg to ssh_pwauth.
2009 Jul 22
1
Changes the ssh karg to ssh_pwauth
This patch obsoletes the previous one with feedback from pmyers at redhat.com.
2018 Feb 27
3
Established connection timing out
...inutes. I connect either over ssh or via > rsync tunnelled over the former. > > On the client side eventually I just see a whole pile of messages like > this, but no rsync traffic appears occurring: > > debug1: client_input_channel_req: channel 0 rtype keepalive at ope > nssh.com reply 1 > > I've monitored both the client and server via strace and neither > machine appears to have "died" from some kind of memory exhaustion, > bandwidth issue, etc. Both appear to simply be waiting for the other to > do something. > > Since my client...
2002 Aug 02
3
[Bug 377] New: Reduce compiler warnings. Use unsigned args to the ctype.h is*() macros.
http://bugzilla.mindrot.org/show_bug.cgi?id=377 Summary: Reduce compiler warnings. Use unsigned args to the ctype.h is*() macros. Product: Portable OpenSSH Version: -current Platform: Sparc OS/Version: Solaris Status: NEW Severity: trivial Priority: P2 Component: Miscellaneous AssignedTo: openssh-unix-dev at mindrot.org ReportedBy: mdb at juniper.net On Solaris 8,...
2009 Jul 06
0
[PATCH node] Disables SSH by default, and allows for enabling at firstboot. rhbz#509842
...do + state="disabled" + prompt="Enable SSH access" + grep "^PermitRootLogin\ *yes" /etc/ssh/sshd_config > /dev/null + if [ $? == 0 ]; then + state="enabled" + prompt="Leave SSH access enabled" + fi + printf "\nSSH access is currently ${state}.\n\n" + read -ep "${prompt} (y/n/a)? " + case $REPLY in + Y|y) toggle_ssh_access true; exit 0;; + N|n) toggle_ssh_access false; exit 0;; + A|a) exit 99;; + esac +done -- 1.6.2.5
2014 May 15
1
[patch/cygwin] contrib/cygwin/ssh-host-config
...st-config under the upcoming Cygwin release 1.7.30, which will introduce the passwd/group handling via the existing Windows account databases (SAM/AD). Thanks, Corinna Index: contrib/cygwin/ssh-host-config =================================================================== RCS file: /cvs/openssh/contrib/cygwin/ssh-host-config,v retrieving revision 1.34 diff -u -p -r1.34 ssh-host-config --- contrib/cygwin/ssh-host-config 8 Nov 2013 13:19:23 -0000 1.34 +++ contrib/cygwin/ssh-host-config 15 May 2014 08:46:20 -0000 @@ -34,6 +34,7 @@ declare -a csih_required_commands=( /usr/bin/mv coreutils...
2001 Mar 07
4
[PATCH]: contrib/cygwin/ssh-host-config
...; as services entries. The new version removes old `sshd' entries from services and inetd.conf and substitutes them with `ssh' entries. The patch file is relative to the contrib/cygwin dir: Index: README =================================================================== RCS file: /cvs/openssh_cvs/contrib/cygwin/README,v retrieving revision 1.2 diff -u -p -r1.2 README --- README 2001/01/19 05:37:32 1.2 +++ README 2001/03/07 10:13:00 @@ -15,12 +15,8 @@ filesystem (which is recommended) due to features of the FAT/FAT32 filesystems. ========================================================...
2011 Feb 21
1
[PATCH/cygwin]: Revised sshh-host-config script
...check if all the tools required to run the script are available on the system. The new script also is more thorough to inform the user why the script failed. TIA, Corinna Index: contrib/cygwin/ssh-host-config =================================================================== RCS file: /cvs/openssh/contrib/cygwin/ssh-host-config,v retrieving revision 1.30 diff -u -p -r1.30 ssh-host-config --- contrib/cygwin/ssh-host-config 6 Feb 2011 02:31:25 -0000 1.30 +++ contrib/cygwin/ssh-host-config 21 Feb 2011 10:16:28 -0000 @@ -1,6 +1,6 @@ #!/bin/bash # -# ssh-host-config, Copyright 2000-2009 Red Hat...
2020 Oct 30
3
SSH client and bracketed paste mode
Hello list, Using a terminal with bracketed paste mode (see [0], [1]), I am not able to paste text while being in the "~C" command line mode. The reason for that is, that while being in that special mode, openssh-client attempts to interpret the special bracketed paste start escape sequence, which does not work: root at localhost:~# ssh> ^[[200~-L /home/..........long-path-to-socket:/run/....long-path-to-remote-socket ^[[201~Invalid command. ~ -bash: /root: Is a directory root at localhost:~# I tried t...
2003 Nov 05
0
[PATCH] contrip/cygwin: Reworking the installation support
...#39;s ok. Thanks in advance, Corinna --- /dev/null 2003-11-05 17:11:29.944000000 +0100 +++ Makefile 2003-10-30 15:15:07.277580000 +0100 @@ -0,0 +1,56 @@ +srcdir=../.. +prefix=/usr +exec_prefix=$(prefix) +bindir=$(prefix)/bin +datadir=$(prefix)/share +docdir=$(datadir)/doc +sshdocdir=$(docdir)/openssh +cygdocdir=$(docdir)/Cygwin +sysconfdir=/etc +defaultsdir=$(sysconfdir)/defaults/etc +PRIVSEP_PATH=/var/empty +INSTALL=/usr/bin/install -c + +DESTDIR= + +all: + @echo + @echo "Use \`make cygwin-postinstall DESTDIR=[package directory]'" + @echo "Be sure having DESTDIR set correctl...
2010 Aug 09
8
Call for testing: OpenSSH-5.6
Hi, OpenSSH 5.6 is almost ready for release, so we would appreciate testing on as many platforms and systems as possible. This is a moderately large release, with a number of new features and bug fixes. Snapshot releases for portable OpenSSH are available from http://www.mindrot.org/openssh_snap/ The OpenBSD...
2019 Oct 15
4
Splitting the large libguestfs repo
I got a little way into this. The two attached patches are preliminary work. My proposed split is: libguestfs.git common -> git submodule libguestfs-common.git generator/ lib/ all language bindings C based tools (eg. virt-df, virt-edit, guestfish) guestfs-tools.git common -> git submodule libguestfs-common.git