HomeSort by relevance Sort by last modified time
    Searched refs:SSH (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/openssh/regress/
proto-version.sh 13 SSH-1.99-*)
16 SSH-2.0-*)
19 SSH-1.5-*)
sshcfgparse.sh 4 tid="ssh config parse"
7 (${SSH} -G -F $OBJ/ssh_config somehost >$OBJ/ssh_config.1 &&
8 ${SSH} -G -F $OBJ/ssh_config.1 somehost >$OBJ/ssh_config.2 &&
11 verbose "ssh -W opts"
12 f=`${SSH} -GF $OBJ/ssh_config host | awk '/exitonforwardfailure/{print $2}'`
14 f=`${SSH} -GF $OBJ/ssh_config -W a:1 h | awk '/exitonforwardfailure/{print $2}'`
16 f=`${SSH} -GF $OBJ/ssh_config -W a:1 -o exitonforwardfailure=no h | \
20 f=`${SSH} -GF $OBJ/ssh_config host | awk '/clearallforwardings/{print $2}'`
22 f=`${SSH} -GF $OBJ/ssh_config -W a:1 h | awk '/clearallforwardings/{print $2}'`
24 f=`${SSH} -GF $OBJ/ssh_config -W a:1 -o clearallforwardings=no h |
    [all...]
connect.sh 9 ${SSH} -o "Protocol=$p" -F $OBJ/ssh_config somehost true
11 fail "ssh connect with protocol $p failed"
login-timeout.sh 13 (echo SSH-2.0-fake; sleep 60) | telnet 127.0.0.1 ${PORT} >/dev/null 2>&1 &
15 ${SSH} -F $OBJ/ssh_config somehost true
17 fail "ssh connect after login grace timeout failed with privsep"
27 (echo SSH-2.0-fake; sleep 60) | telnet 127.0.0.1 ${PORT} >/dev/null 2>&1 &
29 ${SSH} -F $OBJ/ssh_config somehost true
31 fail "ssh connect after login grace timeout failed without privsep"
proto-mismatch.sh 18 mismatch 2 SSH-1.5-HALLO
20 mismatch 1 SSH-2.0-HALLO
try-ciphers.sh 8 for c in `${SSH} -Q cipher`; do
10 for m in `${SSH} -Q mac`; do
16 ${SSH} -F $OBJ/ssh_proxy -2 -m $m -c $c somehost true
18 fail "ssh -2 failed with mac $m cipher $c"
22 if ${SSH} -Q cipher-auth | grep "^${c}\$" >/dev/null 2>&1 ; then
37 ${SSH} -F $OBJ/ssh_proxy -1 -c $c somehost true
39 fail "ssh -1 failed with cipher $c"
forwarding.sh 32 ${SSH} -S $CTL -M -$p -F $OBJ/ssh_config -f $fwd somehost sleep 10
35 ${SSH} -$q -F $OBJ/ssh_config -p$last -o 'ConnectionAttempts=4' \
40 ${SSH} -F $OBJ/ssh_config -S $CTL -O exit somehost
48 ${SSH} -$p -F $OBJ/ssh_config \
58 ${SSH} -q -$p -F $OBJ/ssh_config \
75 ${SSH} -$p -F $OBJ/ssh_config -oClearAllForwardings=yes somehost true
79 ${SSH} -S $CTL -M -$p -f -F $OBJ/ssh_config -L ${base}01:127.0.0.1:$PORT \
85 ${SSH} -$p -F $OBJ/ssh_config -p ${base}01 somehost true \
89 ${SSH} -F $OBJ/ssh_config -S $CTL -O exit somehost
93 ${SSH} -S $CTL -M -$p -f -F $OBJ/ssh_config -R ${base}01:127.0.0.1:$PORT
    [all...]
limit-keytype.sh 14 fatal "ssh-keygen failed"
18 fatal "ssh-keygen failed"
20 fatal "ssh-keygen failed"
22 fatal "ssh-keygen failed"
24 fatal "ssh-keygen failed"
57 ${SSH} $certopts proxy true || fatal "cert failed"
58 ${SSH} $opts -i $OBJ/user_key1 proxy true || fatal "key1 failed"
59 ${SSH} $opts -i $OBJ/user_key2 proxy true || fatal "key2 failed"
63 prepare_config "PubkeyAcceptedKeyTypes ssh-rsa,ssh-ed25519
    [all...]
connect-privsep.sh 10 ${SSH} -$p -F $OBJ/ssh_proxy 999.999.999.999 true
12 fail "ssh privsep+proxyconnect protocol $p failed"
20 ${SSH} -$p -F $OBJ/ssh_proxy 999.999.999.999 true
23 warn "ssh privsep/sandbox+proxyconnect protocol $p failed"
36 env MALLOC_OPTIONS="$m" ${SSH} -$p -F $OBJ/ssh_proxy 999.999.999.999 true
38 fail "ssh privsep/sandbox+proxyconnect protocol $p mopt '$m' failed"
kextype.sh 11 ALLKEX=`${SSH} -Q kex`
16 for k in `${SSH} -Q kex`; do
19 ${SSH} -F $OBJ/ssh_proxy -o KexAlgorithms=$k x true
21 fail "ssh kex $k"
multiplex.sh 21 ${SSH} -F $OBJ/ssh_config -S $CTL -Ocheck otherhost \
33 ${SSH} -Nn2 -MS$CTL -F $OBJ/ssh_config -oSendEnv="_XXX_TEST" somehost \
44 _XXX_TEST=blah ${SSH} -F $OBJ/ssh_config -oSendEnv="_XXX_TEST" -S$CTL otherhost sh << 'EOF'
53 trace "ssh transfer over multiplexed connection and check result"
54 ${SSH} -F $OBJ/ssh_config -S$CTL otherhost cat ${DATA} > ${COPY}
55 test -f ${COPY} || fail "ssh -Sctl: failed copy ${DATA}"
56 cmp ${DATA} ${COPY} || fail "ssh -Sctl: corrupted copy of ${DATA}"
59 trace "ssh transfer over multiplexed connection and check result"
60 ${SSH} -F $OBJ/ssh_config -S $CTL otherhost cat ${DATA} > ${COPY}
61 test -f ${COPY} || fail "ssh -S ctl: failed copy ${DATA}"
    [all...]
cipher-speed.sh 14 for c in `${SSH} -Q cipher`; do n=0; for m in `${SSH} -Q mac`; do
18 ( ${SSH} -o 'compression no' \
24 fail "ssh -2 failed with mac $m cipher $c"
28 if ${SSH} -Q cipher-auth | grep "^${c}\$" >/dev/null 2>&1 ; then
43 ( ${SSH} -o 'compression no' \
48 fail "ssh -1 failed with cipher $c"
dhgex.sh 10 kexs=`${SSH} -Q kex | grep diffie-hellman-group-exchange`
27 ${SSH} ${opts} $@ -vvv -F ${OBJ}/ssh_proxy somehost true
29 fail "ssh failed ($@)"
56 check 3072 `${SSH} -Q cipher | grep 128`
58 check 7680 `${SSH} -Q cipher | grep 192`
59 check 8192 `${SSH} -Q cipher | grep 256`
key-options.sh 15 r=`${SSH} -$p -q -F $OBJ/ssh_proxy somehost echo foo`
29 r=`${SSH} -$p -q -F $OBJ/ssh_proxy somehost tty`
40 r=`${SSH} -$p -q -F $OBJ/ssh_proxy somehost 'echo $FOO'`
51 ${SSH} -$p -q -F $OBJ/ssh_proxy somehost true
59 r=`${SSH} -$p -q -F $OBJ/ssh_proxy somehost 'echo true'`
64 r=`${SSH} -$p -q -F $OBJ/ssh_config somehost 'echo true'`
broken-pipe.sh 9 ${SSH} -$p -F $OBJ/ssh_config_config nexthost echo $i 2> /dev/null | true
envpass.sh 17 _TEST_ENV=blah ${SSH} -oSendEnv="*" -F $OBJ/ssh_proxy_envpass otherhost \
28 _XXX_TEST_A=1 _XXX_TEST_B=2 ${SSH} -F $OBJ/ssh_proxy_envpass otherhost \
39 _XXX_TEST=blah ${SSH} -oSendEnv="_XXX_TEST" -F $OBJ/ssh_proxy_envpass \
50 _XXX_TEST_A=1 _XXX_TEST_B=2 ${SSH} -oSendEnv="_XXX_TEST_*" \
localcommand.sh 11 a=`${SSH} -F $OBJ/ssh_proxy -$p somehost true`
portnum.sh 9 if ${SSH} -F $OBJ/ssh_proxy -p $port somehost true 2>/dev/null ; then
16 if ${SSH} -F $OBJ/ssh_proxy -p $port somehost true 2>/dev/null ; then
yes-head.sh 7 lines=`${SSH} -$p -F $OBJ/ssh_proxy thishost 'sh -c "while true;do echo yes;done | _POSIX2_VERSION=199209 head -2000"' | (sleep 3 ; wc -l)`
exit-status.sh 10 ${SSH} -$p -F $OBJ/ssh_proxy otherhost exit $s
17 ${SSH} -$p -F $OBJ/ssh_proxy -n otherhost \
proxy-connect.sh 16 SSH_CONNECTION=`${SSH} $opts 999.999.999.999 'echo $SSH_CONNECTION'`
18 fail "ssh proxyconnect protocol $p privsep=$ps comp=$c failed"
30 ${SSH} -$p -F $OBJ/ssh_proxy ${USER}:style@999.999.999.999 true || \
31 fail "ssh proxyconnect protocol $p failed"
reconfigure.sh 22 ${SSH} -o "Protocol=$p" -F $OBJ/ssh_config somehost true
24 fail "ssh connect with protocol $p failed before reconfigure"
43 ${SSH} -o "Protocol=$p" -F $OBJ/ssh_config somehost true
45 fail "ssh connect with protocol $p failed after reconfigure"
stderr-data.sh 9 ${SSH} $n -$p -F $OBJ/ssh_proxy otherhost \
14 fail "ssh failed with exit code $r"
19 ${SSH} $n -$p -F $OBJ/ssh_proxy otherhost \
24 fail "ssh failed with exit code $r"
  /external/curl/docs/cmdline-opts/
pass.d 4 Protocols: SSH TLS
key.d 3 Protocols: TLS SSH
7 file. For SSH, if not specified, curl tries the following candidates in order:
8 '~/.ssh/id_rsa', '~/.ssh/id_dsa', './id_rsa', './id_dsa'.

Completed in 134 milliseconds

1 2 3