Lines Matching full:ssh

4 tid="ssh config parse"
9 ssh-dss) dsa=1 ;;
33 (${SSH} -G -F $OBJ/ssh_config somehost >$OBJ/ssh_config.1 &&
34 ${SSH} -G -F $OBJ/ssh_config.1 somehost >$OBJ/ssh_config.2 &&
37 verbose "ssh -W opts"
38 f=`${SSH} -GF $OBJ/ssh_config host | awk '/exitonforwardfailure/{print $2}'`
40 f=`${SSH} -GF $OBJ/ssh_config -W a:1 h | awk '/exitonforwardfailure/{print $2}'`
42 f=`${SSH} -GF $OBJ/ssh_config -W a:1 -o exitonforwardfailure=no h | \
46 f=`${SSH} -GF $OBJ/ssh_config host | awk '/clearallforwardings/{print $2}'`
48 f=`${SSH} -GF $OBJ/ssh_config -W a:1 h | awk '/clearallforwardings/{print $2}'`
50 f=`${SSH} -GF $OBJ/ssh_config -W a:1 -o clearallforwardings=no h | \
56 f=`${SSH} -GF $OBJ/ssh_config host | awk '/^user /{print $2}'`
58 f=`${SSH} -GF $OBJ/ssh_config -o user=foo -l bar baz@host | awk '/^user /{print $2}'`
60 f=`${SSH} -GF $OBJ/ssh_config -lbar baz@host user=foo baz@host | awk '/^user /{print $2}'`
62 f=`${SSH} -GF $OBJ/ssh_config baz@host -o user=foo -l bar baz@host | awk '/^user /{print $2}'`
67 f=`${SSH} -GF none host | awk '/^pubkeyacceptedalgorithms /{print $2}'`
68 expect_result_present "$f" "ssh-ed25519" "ssh-ed25519-cert-v01.*"
69 expect_result_absent "$f" "ssh-dss"
71 f=`${SSH} -GF none -opubkeyacceptedalgorithms=ssh-ed25519 host | \
73 expect_result_present "$f" "ssh-ed25519"
74 expect_result_absent "$f" "ssh-ed25519-cert-v01.*" "ssh-dss"
76 f=`${SSH} -GF none -opubkeyacceptedalgorithms=-ssh-ed25519-cert* host | \
78 expect_result_present "$f" "ssh-ed25519"
79 expect_result_absent "$f" "ssh-ed25519-cert-v01.*" "ssh-dss"
80 f=`${SSH} -GF none -opubkeyacceptedalgorithms=-ssh-ed25519 host | \
82 expect_result_present "$f" "ssh-ed25519-cert-v01.*"
83 expect_result_absent "$f" "ssh-ed25519" "ssh-dss"
87 f=`${SSH} -GF none -opubkeyacceptedalgorithms=+ssh-dss-cert* host | \
89 expect_result_present "$f" "ssh-ed25519" "ssh-dss-cert-v01.*"
90 expect_result_absent "$f" "ssh-dss"
91 f=`${SSH} -GF none -opubkeyacceptedalgorithms=+ssh-dss host | \
93 expect_result_present "$f" "ssh-ed25519" "ssh-ed25519-cert-v01.*" "ssh-dss"
94 expect_result_absent "$f" "ssh-dss-cert-v01.*"
98 f=`${SSH} -GF none host | awk '/^forwardagent /{print$2}'`
100 f=`${SSH} -GF none -oforwardagent=no host | awk '/^forwardagent /{print$2}'`
102 f=`${SSH} -GF none -oforwardagent=yes host | awk '/^forwardagent /{print$2}'`
104 f=`${SSH} -GF none '-oforwardagent=SSH_AUTH_SOCK.forward' host | awk '/^forwardagent /{print$2}'`
113 f=`${SSH} -GF $OBJ/ssh_config.0 -oipqos=cs1 host | awk '/^ipqos /{print$2}'`
115 f=`${SSH} -GF $OBJ/ssh_config.0 -otunneldevice=3:4 host | awk '/^tunneldevice /{print$2}'`