Displaying 6 results from an estimated 6 matches for "keyprint".
2001 May 14
2
openssh-2.9p1
Hi,
1. I think you should apply the attached patch to openssh-2.9p1,
otherwise ssh-keyscan on linux boxes with glibc-2.1 will experience enormous
timeout delays.
2. Is there a program like ssh-keyscan for the Version2 (dsa and rsa) keys??
regards
Peter Breitenlohner <peb at mppmu.mpg.de>
-------------- next part --------------
diff -ur openssh-2.9p1.orig/ssh-keyscan.c
2001 Jul 27
0
Updated ssh-keyscan patch for ssh2 support
...c_data;		/* Data read from this fd */
+	Kex *c_kex;		/* The key-exchange struct for ssh2 */
 	struct timeval c_tv;	/* Time at which connection gets aborted */
 	TAILQ_ENTRY(Connection) c_link;	/* List of connections in timeout order. */
 } con;
@@ -242,8 +264,8 @@
 	return (tok);
 }
 
-static void
-keyprint(char *host, char *output_name, char *kd, int len)
+static Key *
+keygrab_ssh1(con *c)
 {
 	static Key *rsa;
 	static Buffer msg;
@@ -252,12 +274,12 @@
 		buffer_init(&msg);
 		rsa = key_new(KEY_RSA1);
 	}
-	buffer_append(&msg, kd, len);
-	buffer_consume(&msg, 8 - (len & 7));	/* padd...
2007 Apr 19
3
selinux problem with squid and snmp_port in centos 5
Hi all,
Just want to enable squid's SNMP support to get information about
its perfomance through snmp client. I set "snmp_port 3401" in squid.conf
SELinux is in enforcing state with targeted policy.
But squid daemon doesn't start. There are some messages in audit.log
like
type=SYSCALL msg=audit(1176946812.492:244): arch=40000003 syscall=102
success=no exit=-13 a0=2 a1=bf880060
2007 Apr 19
2
Intel DG965OT
Hi,
someone successfully running Centos 5 on Intel DG965OT board? I'm not
able to install.
Thanks,
David
2007 Apr 18
4
linuxthreads & Printers in Centos5...
Dear All,
Firstly, many thanks for the hard work put in by the development team :)
Now I have a couple of problems, any help welcome:
1) Some of our software needs linuxthreads (i.e. InsightII) but it's closed 
source and the writers (Accelrys) are unlikely to respin the code as they 
want us to move to a different program.
Is there any way of installing another set of glibc libs on centos
2012 Nov 24
0
ssh-keyscan continuity patch --
...urn;
 	}
 	fprintf(stderr, "# %s %s\n", c->c_name, chop(buf));
 	n = snprintf(buf, sizeof buf, "SSH-%d.%d-OpenSSH-keyscan\r\n",
@@ -466,13 +511,17 @@
 		confree(s);
 		return;
 	}
+/* Read and print one of the ssh2 keys for this host. */
 	if (c->c_keytype != KT_RSA1) {
 		keyprint(c, keygrab_ssh2(c));
 		confree(s);
 		return;
 	}
+/* Continue the process of getting the ssh1 key. */
 	c->c_status = CS_SIZE;
 	contouch(s);
+	return;
+
 }
 
 static void
@@ -520,7 +569,7 @@
 	struct timeval seltime, now;
 	fd_set *r, *e;
 	con *c;
-	int i;
+	int i, s;
 
 	gettimeofday(&n...