Displaying 5 results from an estimated 5 matches for "test_ssh_port".
2009 May 04
0
Test port not available
...eady running on port 4242 (in my case, the
Juniper Network Connect client).
This got me thinking, it might be nice if the code used to set the port
was a bit more resilient and/or the error message a bit more informative.
On the first point, maybe this code in test-exec.sh:
if [ ! -z "$TEST_SSH_PORT" ]; then
PORT="$TEST_SSH_PORT"
else
PORT=4242
fi
could be something similar to:
if [ ! -z "$TEST_SSH_PORT" ]; then
PORT="$TEST_SSH_PORT"
else
first_port=4200
last_port=4300
test_port=$first_port
while [ "$test...
2010 Apr 09
5
[Bug 1752] New: Test port not available during make tests
..."
fails with the error "no sshd running on port 4242". The real cause in
my case is that something is already running on port 4242 (the Juniper
Network Connect client).
It would be nice if the error message were a bit more helpful, eg:
no sshd running on port 4242, try setting $TEST_SSH_PORT to a
different port
To go a step further, it might be nice if the code used to set the port
was a bit more resilient, with an error message more informative.
Maybe the code in test-exec.sh:
if [ ! -z "$TEST_SSH_PORT" ]; then
PORT="$TEST_SSH_PORT"
else
PORT=4242...
2004 Aug 18
2
Trying regression tests
I know it is just after a release, but I'm trying to see how the
regression tests look on Tru64. I hadn't had a chance to really look at
them before because I didn't have sudo installed on Tru64 (now I do).
Anyway, for the 3.9p1 release, all of them run except for a couple of
problems:
- agent-ptrace fails; it looks like setgid isn't enough to kill tracing
under Tru64, and I
2023 Jan 24
1
Upstream forwarding test failure
Dear colleagues,
I came across an upstream test suite failure on Fedora 36.
The test in question is forwarding, the output is
==========
adding modulifile='/home/dbelyavs/work/upstream/openssh-portable/moduli' to
sshd_config
using cached key type ssh-ed25519
using cached key type sk-ssh-ed25519 at openssh.com
using cached key type ecdsa-sha2-nistp256
using cached key type
2020 May 12
9
Call for testing: OpenSSH 8.3
Hi,
OpenSSH 8.3p1 is almost ready for release, so we would appreciate testing
on as many platforms and systems as possible. This is a bugfix release.
Snapshot releases for portable OpenSSH are available from
http://www.mindrot.org/openssh_snap/
The OpenBSD version is available in CVS HEAD:
http://www.openbsd.org/anoncvs.html
Portable OpenSSH is also available via git using the
instructions at