Displaying 20 results from an estimated 1000 matches similar to: "configure: error: C compiler cannot create executables"
2001 Sep 28
2
openssh-2.9p2, auth2.c
Even with option "HostbasedUsesNameFromPacketOnly yes", the trailing
dot in chost should be stripped before auth_rhosts2() is called from
hostbased_key_allowed().
Hans Werner Strube strube at physik3.gwdg.de
Drittes Physikalisches Institut, Univ. Goettingen
Buergerstr. 42-44, D-37073 Goettingen, Germany
Suggested change:
*** auth2.c.ORI Wed Apr 25 14:44:15 2001
---
2002 May 08
1
[PATCH] Strip trailing . when using HostbasedUsesNameFromPacketOnly
The following simple patch (against openssh-3.1) moves the test for a
trailing dot in the client-supplied hostname so that it is also stripped
when using the server option HostbasedUsesNameFromPacketOnly.
Please CC me on any replies, as I'm not subscribed to the list.
Cheers,
Bill Rugolsky
--- ssh/auth2.c~ Sun Feb 24 14:14:59 2002
+++ ssh/auth2.c Wed May 8 16:26:26 2002
@@ -709,15
2001 Nov 09
2
openssh-3.0p1, auth2.c
openssh-3.0p1 still contains the bug which I already reported on Sept. 28 2001
for 2.9p2, namely, the trailing dot in chost should be stripped before calling
auth_rhosts2() even with option "HostbasedUsesNameFromPacketOnly yes".
Otherwise, the host names in /etc/hosts.equiv and .rhosts would have to be
dot-terminated. Fix: Move lines 776-779 of auth2.c upwards to after line 767.
(These
2005 Oct 06
1
Possible security problem in hostbased user authentication?
In auth2-hostbased.c, line #146
if (auth_rhosts2(pw, cuser, chost, chost) == 0)
^^^^^
shouldn't this be
if (auth_rhosts2(pw, cuser, chost, ipaddr) == 0)
^^^^^^
The code was found in 4.2.
Best regards,
Choung S.Park
2003 Feb 05
0
openssh 3.5p1 hostbased authentication
hello,
i did some debugging today, here is the weird portion form sshd -d -d -d
debug1: userauth-request for user jholland service ssh-connection method
hostbased
debug1: attempt 1 failures 1
debug2: input_userauth_request: try method hostbased
debug1: userauth_hostbased: cuser jholland chost i2-0. pkalg ssh-dss slen
55
debug3: mm_key_allowed entering
debug3: mm_request_send entering: type 20
2003 Feb 28
1
Hostbased Authentication Question
Hi,
I am still working on getting hostbased authentication working in
OpenSSH 3.5p1. I emailed the user list, and got no response. It seems so
simple, yet I have continued to have problems getting it working properly.
I've read posts about it on this list, and the openssh-unix-dev list, and
nothing I have tried seems to work. My question is this, does it matter
which key, either
2015 Jan 09
5
OpenSSH_6.7p1 hostbased authentication failing on linux->linux connection. what's wrong with my config?
I run OpenSSH on linux
@ client
which ssh
/usr/local/bin/ssh
ssh -v
OpenSSH_6.7p1, OpenSSL 1.0.1j 15 Oct 2014
@ server
which sshd
/usr/local/bin/sshd
sshd -v
unknown option -- V
OpenSSH_6.7p1, OpenSSL 1.0.1j 15 Oct 2014
usage: sshd [-46DdeiqTt] [-b bits] [-C connection_spec] [-c host_cert_file]
[-E log_file] [-f config_file] [-g login_grace_time]
2006 Sep 18
3
Firewire question (Centos 4.4)
Assuming I have a firewire card with a supported chipset, is there
anything special I need to do in order for the kernel to recognize the
card? Shouldn't kudzu "wake up" and configure the card when I boot up
after installing it?
This is a brand spanking new 4.4 system and a supported Agere chipset
firewire card. I'm having trouble tickling devices connected to the
card.
2010 Feb 24
1
PXELINUX + LOCALBOOT disables network within operating system
Hi,
I am using syslinux-3.85 (and before till 3.72) and I have seen a peculiar problem on a couple of machines that I have in my lab.
The problem is that if the machine boots onto PXE, and then does a "LOCALBOOT 0", the networking component of the OS stops working !!!
If I skip PXE boot, and just let the OS boot, the OS's networking is working fine.
The problem is seen of all the
2011 Feb 17
1
Network frozen in Centos 5 with Xen
Hello,
I have this problem - I have installation of Xen and Centos 5 (all RPMs are from Centos repositories).
I have several DomU virtual machines running on this machine.
When I try to copy some bigger amount of data from another physical computer to Dom0/DomU on this machine, the network freezes. The link is still up, I can see that the connection really links on the switch, but nothing is
2012 Jul 07
3
[Bug 51809] New: jReality "Export->Image" on nouveau corrupts memory / locks up X server
https://bugs.freedesktop.org/show_bug.cgi?id=51809
Bug #: 51809
Summary: jReality "Export->Image" on nouveau corrupts memory /
locks up X server
Classification: Unclassified
Product: Mesa
Version: unspecified
Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: NEW
2016 Feb 14
5
[Bug 2541] New: Add explicit_bzero() before free() in OpenSSH-7.1p2 for auth1.c/auth2.c/auth2-hostbased.c
https://bugzilla.mindrot.org/show_bug.cgi?id=2541
Bug ID: 2541
Summary: Add explicit_bzero() before free() in OpenSSH-7.1p2
for auth1.c/auth2.c/auth2-hostbased.c
Product: Portable OpenSSH
Version: 7.1p1
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: P5
2020 Nov 17
2
image works in native but not in vm when cpu mode='host-passthrough' is set
Greetings.
I have an image I've created with a bunch of chost flags which works on my machine when it comes to native boot.
if I take that same image into a vm managed via libvirt, I get kernel panic.
I'd assume that something is missing from my vm config, question is what and what I can do about it?
here is the flags part of lscpu in native and vm: https://dpaste.com/3TR8QJ5G8
and the
2006 Feb 12
1
sshd double-logging
Hi all.
As Corinna pointed out, there are some cases where sshd will log some
authentications twice when privsep=yes.
This can happen on any platform although it seems most obvious on the
ones that don't do post-auth privsep. It also occurs when sshd logs
to stderr (eg running under daemontools) or when you have a /dev/log in
the privsep chroot.
The patch below attempts to solve this for
2002 Aug 01
0
[Bug 376] New: HostbasedAuthentication, followed snailbook but not working! :-(
http://bugzilla.mindrot.org/show_bug.cgi?id=376
Summary: HostbasedAuthentication, followed snailbook but not
working! :-(
Product: Portable OpenSSH
Version: -current
Platform: UltraSparc
URL: http://groups.google.com/groups?dq=&hl=en&lr=&ie=UTF-
2013 Jan 15
1
Sluggish server with big array
Hi!
I am experiencing strange behavior with my new CentOS 6.3
installation (system up to date). I have a big 11 TB EXT4 array mounted
on /home/data. The server is a Tyan 2U (TA26-B3992-E) with Dual Opteron
2216, one cpu has 4 Gigs RAM and the other has 8 Gigs (so 12 Gigs
total). The server uses 8 x Seagate 2TB SAS hard disks (7200 RPM) and
all the disks are grouped together to form 1
2009 Apr 30
2
esata
I am trying to get esata working. my lspci is below.
When I plug in the disk an turn it on - dmesg reports nothing.
Is it supposed to report anything like a usb disk does?
Is there a module to load?
My motherboard is GA-MA78GM-US2H.
Jerry
---------
00:00.0 Host bridge: Advanced Micro Devices [AMD] RS780 Host Bridge
00:01.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge
2002 Aug 07
0
[Bug 382] New: Privilege Separation breaks HostbasedAuthentication
http://cvs-mirror.mozilla.org/webtools/bugzilla/show_bug.cgi?id=382
Summary: Privilege Separation breaks HostbasedAuthentication
Product: Portable OpenSSH
Version: -current
Platform: Sparc
OS/Version: Solaris
Status: NEW
Severity: major
Priority: P2
Component: sshd
AssignedTo: openssh-unix-dev at
2005 Nov 27
1
Asterisk 1.2 and Athlon64 platforms
Good evening all,
Are there any folks out there running Asterisk on Athlon64 platforms with
64-bit operating systems? I have a couple of new asterisk servers to build
up this week and I'm debating whether to order some Athlon64 CPUs and boards
for them.
I usually install Gentoo onto the boxes, so any experiences (or pitfalls)
that folks running Gentoo + Asterisk on Athlon64 platforms would
2009 Sep 10
1
[Bug 23822] New: Blank Screen during nouveau/xen boot
http://bugs.freedesktop.org/show_bug.cgi?id=23822
Summary: Blank Screen during nouveau/xen boot
Product: xorg
Version: unspecified
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
AssignedTo: nouveau at lists.freedesktop.org
ReportedBy: