Home
last modified time | relevance | path

Searched refs:ssh (Results 1 – 25 of 142) sorted by relevance

123456

/third_party/libwebsockets/READMEs/
DREADME.plugin-sshd-base.md1 ssh-base Plugin
6 lws-ssh-base is a protcol plugin for libwebsockets that implements a
7 generic, abstract, ssh server.
20 - The plugin has no built-in behaviours like check ~/.ssh/authorized_keys,
28 handlers. So it's role is something like an abstract base class for an ssh
44 |Server host key|ssh-rsa (4096b)|
50 lws-ssh-base is Free Software, available under libwebsockets' MIT license.
58 $ ssh-keygen -t rsa -b 4096 -f mykeys
63 with ssh, you can just use that directly.
71 spawns a bash shell when an ssh client authenticates. The username used on
[all …]
DREADME.http-fallback.md24 What happens if you try to connect, eg, an ssh client to the http server port
47 socket to handle both http(s) and a second protocol, as we will see, like ssh.
165 But if you try to connect to it with an ssh client, that will also work fine.
169 `ssh -p 443 invalid@libwebsockets.org`... you will get permission denied from
170 your ssh client. With valid credentials in fact that works perfectly for
171 ssh, scp, git-over-ssh etc all on port 443...
/third_party/python/Tools/buildbot/
DremoteDeploy.bat18 ssh %SSH_SERVER% echo Make sure we can find SSH and SSH_SERVER variable is valid
28 ssh %SSH_SERVER% "kill python.exe"
29 ssh %SSH_SERVER% "kill python_d.exe"
30 ssh %SSH_SERVER% "if EXIST %REMOTE_PYTHON_DIR% (rd %REMOTE_PYTHON_DIR% /s/q)"
33 ssh %SSH_SERVER% "md %REMOTE_PYTHON_DIR%PCBuild\arm32"
34 ssh %SSH_SERVER% "md %REMOTE_PYTHON_DIR%temp"
35 ssh %SSH_SERVER% "md %REMOTE_PYTHON_DIR%Modules"
36 ssh %SSH_SERVER% "md %REMOTE_PYTHON_DIR%PC"
58 echo Also a key must be created with ssh-keygen and added to both the buildbot worker machine
59 … ARM32 worker device: see https://docs.microsoft.com/en-us/windows/iot-core/connect-your-device/ssh
DremotePythonInfo.bat25 ssh %SSH_SERVER% %PYTHON_EXE% -m test.pythoninfo
33 echo Also a key must be created with ssh-keygen and added to both the buildbot worker machine
34 … ARM32 worker device: see https://docs.microsoft.com/en-us/windows/iot-core/connect-your-device/ssh
/third_party/skia/infra/bots/recipe_modules/flavor/
Dssh.py33 def ssh(self, title, *cmd, **kwargs): member in SSHFlavor
43 self.ssh('mkdir %s' % path, 'mkdir', '-p', path)
52 self.ssh('make %s executable' % self.app_name, 'chmod', '+x', device_path)
56 self.ssh('rm %s' % path, 'rm', '-rf', path)
60 rv = self.ssh('read %s' % path,
67 self.ssh('rm %s' % path, 'rm', '-f', path)
86 self.ssh(str(name), *cmd)
Dchromebook.py9 from . import ssh
15 class ChromebookFlavor(ssh.SSHFlavor):
37 self.ssh('remount %s as exec' % self.chromeos_homedir,
/third_party/libwebsockets/plugins/
DCMakeLists.txt196 create_plugin(protocol_lws_ssh_base "ssh-base/include"
197ssh-base/sshd.c;ssh-base/telnet.c;ssh-base/kex-25519.c" "ssh-base/crypto/chacha.c;ssh-base/crypto/…
202 create_plugin(protocol_lws_sshd_demo "ssh-base/include" "protocol_lws_sshd_demo.c" "" "")
207 include_directories("${PROJECT_SOURCE_DIR}/plugins/ssh-base/include")
/third_party/libwebsockets/minimal-examples/raw/minimal-raw-proxy/
DREADME.md6 By default the example will proxy 127.0.0.1:22, usually your ssh server
7 listen port, on 127.0.0.1:7681. You should be able to ssh into port 7681
8 the same as you can port 22. But your ssh server is only listening on port 22...
36 $ ssh -p7681 me@127.0.0.1
/third_party/curl/docs/cmdline-opts/
Dcompressed-ssh.d3 Long: compressed-ssh
7 Category: scp ssh
9 Example: --compressed-ssh sftp://example.com/
/third_party/ltp/runtest/
Dnet_stress.appl2 # Stress test for major application protocol (ssh, dns, http, ftp)
5 ssh4-stress ssh-stress.sh
6 ssh6-stress ssh-stress.sh -6
/third_party/curl/tests/data/
Dtest64213 for ssh test
27 …ent_key --pubkey %LOGDIR/server/curl_client_key.pub -u %USER: --compressed-ssh sftp://%HOSTIP:%SSH…
31 for ssh test
Dtest61822 for ssh test
34 for ssh test
36 for ssh test
Dtest61922 for ssh test
34 for ssh test
36 for ssh test
Dtest145916 mkdir -p %PWD/%LOGDIR/test%TESTNUMBER.dir/.ssh
28 <file name="%LOGDIR/test%TESTNUMBER.dir/.ssh/known_hosts">
29 |1|qy29Y1x/+/F39AzdG5515YSSw+c=|iB2WX5jrU3ZTWc+ZfGau7HHEvBc= ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEAyn…
Dtest60113 for ssh test
31 for ssh test
Dtest60013 for ssh test
31 for ssh test
Dtest63513 ssh test
31 for ssh test
Dtest63614 for ssh test
32 for ssh test
Dtest60328 for ssh upload test
37 for ssh upload test
Dtest60228 for ssh upload test
37 for ssh upload test
/third_party/node/tools/
Drelease.sh106 shapath=$(ssh ${customsshkey} "${webuser}@${webhost}" $signcmd nodejs $1)
149ssh ${customsshkey} "${webuser}@${webhost}" chmod 644 "${shadir}/${shafile}.asc" "${shadir}/${shaf…
172 promotable=$(ssh ${customsshkey} "$webuser@$webhost" $promotablecmd nodejs)
210 ssh ${customsshkey} "$webuser@$webhost" $promotecmd nodejs $version && \
/third_party/node/deps/npm/node_modules/pacote/lib/
Dgit.js103 const ssh = hosted.sshurl && hosted.sshurl()
105 if (!ssh || hosted.auth) {
108 return this[_resolvedFromRepo](ssh)
293 const ssh = hosted.sshurl && hosted.sshurl({ noCommittish: true })
295 if (!ssh || hosted.auth) {
298 return this[_cloneRepo](ssh, ref, tmp)
/third_party/libwebsockets/minimal-examples/raw/minimal-raw-proxy-fallback/
DREADME.md9 your ssh server listen port, on 127.0.0.1:7681. You should be able to ssh into
12 https://127.0.0.1:7681 while your ssh client can still connect to the same
43 $ ssh -p7681 me@127.0.0.1
/third_party/ltp/testcases/kernel/mce-test/kvm/host/
Dhost_run.sh216 if [ ! -d $mnt/root/.ssh ]; then
217 mkdir $mnt/root/.ssh
218 chmod 700 $mnt/root/.ssh
227 cat $host_key_pub >> $mnt/root/.ssh/authorized_keys
275ssh -i $host_key_priv -o StrictHostKeyChecking=no localhost -p 5555 echo "" > /dev/null 2>&1
/third_party/ltp/testcases/kdump/
Drunkdump.sh98 file=$(ssh -i ~/.ssh/kdump_id_rsa "${SCP_PATH}" "ls -t ${COREDIR}/*/vmcore* \
106 scp -i ~/.ssh/kdump_id_rsa "${SCP_PATH}:${file}" "${COREDIR}/${last}"

123456