Displaying 7 results from an estimated 7 matches for "rsa1_key".
2006 Oct 31
2
Running two sshd's
Hi all,
I'm wondering whether it is feasible or not to run two distinct sshd
daemons with different config options!
I have a CentOS 4.4 gateway with 2 Ethernet interfaces. One is
connected to the Internet and the other to the LAN.
Basically, what I would like to do is having a sshd that listens to
the LAN interface with password enabled auth. and a sshd bound to the
Internet interface with
2001 Feb 18
3
PATCH: Round 2: RH initscripts backward compatibility
...rror.
+if [ -f /etc/init.d/sshd-functions ]; then
+ . /etc/init.d/sshd-functions
+else
+ . /etc/rc.d/init.d/sshd-functions
+fi
+if [ $? -ne 0 ]; then
+ exit 1
+fi
RETVAL=0
-# Some functions to make the below more readable
+PROG="sshd"
+SSHD=/usr/sbin/sshd
KEYGEN=/usr/bin/ssh-keygen
RSA1_KEY=/etc/ssh/ssh_host_key
RSA_KEY=/etc/ssh/ssh_host_rsa_key
DSA_KEY=/etc/ssh/ssh_host_dsa_key
PID_FILE=/var/run/sshd.pid
-do_rsa1_keygen() {
- if ! test -f $RSA1_KEY ; then
- echo -n "Generating SSH1 RSA host key: "
- if $KEYGEN -q -t rsa1 -f $RSA1_KEY -C '' -N '' >&am...
2008 Apr 21
3
FIPS 140-2 OpenSSL(2007) patches
Hi,
I am happy to (re)send a set of patches for compiling OpenSSH 4.7p1 with
FIPS 140-2 OpenSSL.
These are based on previously reported patches by Steve Marquess
<marquess at ieee.org> and Ben Laurie <ben at algroup.co.uk>,
for ver. OpenSSH 3.8.
Note that these patches are NOT OFFICIAL, and MAY be used freely by
anyone.
Issues [partially] handled:
SSL FIPS Self test.
RC4,
2004 Sep 07
0
Please review openssh patch for selinux
...anilla/contrib/redhat/sshd.init openssh-3.9p1_selinux/contrib/redhat/sshd.init
--- openssh-3.9p1_vanilla/contrib/redhat/sshd.init 2002-05-10 04:19:23.000000000 +0200
+++ openssh-3.9p1_selinux/contrib/redhat/sshd.init 2004-09-07 17:41:15.000000000 +0200
@@ -35,6 +35,9 @@
if $KEYGEN -q -t rsa1 -f $RSA1_KEY -C '' -N '' >&/dev/null; then
chmod 600 $RSA1_KEY
chmod 644 $RSA1_KEY.pub
+ if [ -x /sbin/restorecon ]; then
+ /sbin/restorecon $RSA1_KEY.pub
+ fi
success $"RSA1 key generation"
echo
else
@@ -51,6 +54,9 @@
if $KEYGEN -q -t rsa -f $RSA...
2005 Jun 02
5
[Bug 1051] error: Bind to port 22 on 0.0.0.0 failed: Address already in use.
...nd authentication.
#
# Version 10.05.2004 09:08 (g.waldhausen / Tietoenator AG)
# corrected version: 02.06.2005 11:20
# Source function library.
. /etc/rc.d/init.d/functions
[ -f /etc/sysconfig/sshd ] && . /etc/sysconfig/sshd
RETVAL=0
# Einstellungen
KEYGEN=/usr/local/ssl/bin/ssh-keygen
RSA1_KEY=/usr/local/ssl/etc/ssh_host_key
RSA_KEY=/usr/local/ssl/etc/ssh_host_rsa_key
DSA_KEY=/usr/local/ssl/etc/ssh_host_dsa_key
PID_FILE=/var/run/sshd41.pid
my_success() {
local msg
if [ $# -gt 1 ]; then
msg="$2"
else
msg="done"
fi
case "`type -type success`"...
2006 Apr 03
9
[Bug 880] SELinux patch
http://bugzilla.mindrot.org/show_bug.cgi?id=880
------- Comment #3 from djm at mindrot.org 2006-04-03 21:45 -------
Created an attachment (id=1110)
--> (http://bugzilla.mindrot.org/attachment.cgi?id=1110&action=view)
Revised diff
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
2001 Feb 16
3
PATCH: make contrib/redhat/sshd.init work with older RH releases
Damien--
Attached is a patch to contrib/redhat/sshd.init which eliminates the
dependency on the success() and failure() functions from
initscripts>=4.16. This allows sshd.init to be used for both early and
recent releases of Red Hat Linux (i've confirmed it works on both 4.2
and 5.2 as well as 6.2).
The patch also removes the 'Requires: initscripts >= 4.16' line from