{"id":148400,"date":"2020-09-01T15:49:26","date_gmt":"2020-09-01T07:49:26","guid":{"rendered":"http:\/\/4563.org\/?p=148400"},"modified":"2020-09-01T15:49:26","modified_gmt":"2020-09-01T07:49:26","slug":"%e4%bd%bf%e7%94%a8-ssh-%e8%bf%9e%e6%8e%a5-github-action-%e6%9c%8d%e5%8a%a1%e5%99%a8","status":"publish","type":"post","link":"http:\/\/4563.org\/?p=148400","title":{"rendered":"\u4f7f\u7528 SSH \u8fde\u63a5 GitHub Action \u670d\u52a1\u5668"},"content":{"rendered":"\n<p>  \t\t\t\t\t<strong>zxxx<\/strong>  \t\t\t\t\u5927\u4f6c\u6709\u8bdd\u8bf4 : \t<\/p>\n<h3>\u4f7f\u7528 SSH \u8fde\u63a5 GitHub Action \u670d\u52a1\u5668<\/h3>\n<p>  \t\t \u672c\u5e16\u6700\u540e\u7531 zxxx \u4e8e 2020-9-1 16:10 \u7f16\u8f91 <\/p>\n<p> 1. \u5728\u00a0ngrok \u7684\u5b98\u7f51\u6ce8\u518c\u4e00\u4e2a\u8d26\u6237<\/p>\n<p>  https:\/\/www.ngrok.com\/<\/p>\n<p>  2. \u67e5\u770b Authtoken<\/p>\n<p>  https:\/\/dashboard.ngrok.com\/auth\/your-authtoken<\/p>\n<p>  3. \u5728 GitHub \u521b\u5efa\u4e00\u4e2a Repo<\/p>\n<p>  4. \u7ed9 Repo \u6dfb\u52a0 Secrects<\/p>\n<p>  NGROK_TOKEN \uff1a 1gtVf&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-yVqbyAXX9<br \/>  SSH_PASSWORD \uff1aThisIsMySshServerPassword <\/p>\n<p>  5. \u6dfb\u52a0\u6587\u4ef6 ssh-server.sh \u5230 Repo<\/p>\n<p>  #!\/bin\/bash<\/p>\n<p>  if [[ -z &quot;$NGROK_TOKEN&quot; ]]; then<br \/>  echo &quot;Please set &#8216;NGROK_TOKEN&#8217;&quot;<br \/>  exit 2<br \/>  fi<\/p>\n<p>  if [[ -z &quot;$SSH_PASSWORD&quot; ]]; then<br \/>  echo &quot;Please set &#8216;SSH_PASSWORD&#8217; for user: $USER&quot;<br \/>  exit 3<br \/>  fi<\/p>\n<p>  wget -q https:\/\/bin.equinox.io\/c\/4VmDzA7iaHb\/ngrok-stable-linux-386.zip<br \/>  unzip ngrok-stable-linux-386.zip<br \/>  chmod +x .\/ngrok<\/p>\n<p>  echo -e &quot;$SSH_PASSWORDn$SSH_PASSWORD&quot; | sudo passwd &quot;$USER&quot;<\/p>\n<p>  rm -f .ngrok.log<br \/>  .\/ngrok authtoken &quot;$NGROK_TOKEN&quot;<br \/>  .\/ngrok tcp 22 &#8211;log &quot;.ngrok.log&quot; &amp;<\/p>\n<p>  sleep 10<\/p>\n<p>  HAS_ERRORS=$(grep &quot;command failed&quot; &lt; .ngrok.log)<\/p>\n<p>  if [[ -z &quot;$HAS_ERRORS&quot; ]]; then<br \/>  echo &quot;&quot;<br \/>  echo &quot;To connect: $(grep -o -E &quot;tcp:\/\/(.+)&quot; &lt; .ngrok.log | sed &quot;s\/tcp:\/\/\/ssh $USER@\/&quot; | sed &quot;s\/:\/ -p \/&quot;)&quot;<br \/>  echo &quot;&quot;<br \/>  else<br \/>  echo &quot;$HAS_ERRORS&quot;<br \/>  exit 4<br \/>  fi<\/p>\n<p>  6. \u521b\u5efa workflow\uff1assh-server.yml<\/p>\n<p>  name: SSH Server<br \/>  on: push<br \/>  jobs:<br \/>  build:<br \/>  &nbsp; &nbsp; runs-on: ubuntu-latest<br \/>  &nbsp; &nbsp; steps:<br \/>  &nbsp; &nbsp;&#8211; uses: actions\/checkout@v2<\/p>\n<p>  &nbsp; &nbsp;&#8211; name: Failed<br \/>  &nbsp; &nbsp;&nbsp; &nbsp; run: .\/dummy.sh<\/p>\n<p>  &nbsp; &nbsp;&#8211; name: Start SSH Server<br \/>  &nbsp; &nbsp;&nbsp; &nbsp; if: ${{ failure() }}<br \/>  &nbsp; &nbsp;&nbsp; &nbsp; env:<br \/>  &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;NGROK_TOKEN: ${{ secrets.NGROK_TOKEN }}<br \/>  &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;SSH_PASSWORD: ${{ secrets.SSH_PASSWORD }}<br \/>  &nbsp; &nbsp;&nbsp; &nbsp; run: |<br \/>  &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; chmod +x .\/ssh-server.sh &amp;&amp;.\/ssh-server.sh<\/p>\n<p>  &nbsp; &nbsp;&#8211; name: Sleep<br \/>  &nbsp; &nbsp;&nbsp; &nbsp; if: ${{ failure() }}<br \/>  &nbsp; &nbsp;&nbsp; &nbsp; run: sleep 1h<br \/>  https:\/\/cdn.jsdelivr.net\/gh\/hishis\/forum-master\/public\/images\/patch.gif\t\t\t\t<\/p>\n<p>  \t\t\t\t\t<strong>zxxx<\/strong>  \t\t\t\t\u5927\u4f6c\u6709\u8bdd\u8bf4 : \t<\/p>\n<h3><\/h3>\n<p>  \t\t \u672c\u5e16\u6700\u540e\u7531 zxxx \u4e8e 2020-9-1 15:07 \u7f16\u8f91 <\/p>\n<p> ssh runner@0.tcp.ngrok.io -p 17527<br \/>  The authenticity of host &#8216;:17527 (:17527)&#8217; can&#8217;t be established.<br \/>  ECDSA key fingerprint is SHA256:v1Eaojx3SuZJSsLdFT+FDZl3iBzcEvtirxJJeQaOVrs.<br \/>  Are you sure you want to continue connecting (yes\/no)? yes<br \/>  Warning: Permanently added &#8216;:17527,:17527&#8217; (ECDSA) to the list of known hosts.<br \/>  runner@0.tcp.ngrok.io&#8217;s password: <br \/>  Welcome to Ubuntu 18.04.5 LTS (GNU\/Linux 5.3.0-1034-azure x86_64)<\/p>\n<p>   * Documentation:https:\/\/help.ubuntu.com<br \/>   * Management:&nbsp; &nbsp;https:\/\/landscape.canonical.com<br \/>   * Support:&nbsp; &nbsp;&nbsp; &nbsp;https:\/\/ubuntu.com\/advantage<\/p>\n<p>  System information as of Tue Sep1 06:35:40 UTC 2020<\/p>\n<p>  System load:0.47&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;Processes:&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;151<br \/>  Usage of \/:&nbsp; &nbsp;69.6% of 83.18GB&nbsp; &nbsp;Users logged in:&nbsp; &nbsp;&nbsp; &nbsp;0<br \/>  Memory usage: 14%&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; IP address for eth0:&nbsp; &nbsp; 10.1.0.4<br \/>  Swap usage:&nbsp; &nbsp;0%&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;IP address for docker0: 172.17.0.1<\/p>\n<p>   * Kubernetes 1.19 is out! Get it in one command with:<\/p>\n<p>  &nbsp; &nbsp;sudo snap install microk8s &#8211;channel=1.19 &#8211;classic<\/p>\n<p>  &nbsp; &nbsp;https:\/\/microk8s.io\/ has docs and details.<\/p>\n<p>   * Canonical Livepatch is available for installation.<br \/>  &nbsp; &nbsp;&#8211; Reduce system reboots and improve kernel security. Activate at:<br \/>  &nbsp; &nbsp;https:\/\/ubuntu.com\/livepatch<\/p>\n<p>  12 packages can be updated.<br \/>  0 updates are security updates.<\/p>\n<p>  The programs included with the Ubuntu system are free software;<br \/>  the exact distribution terms for each program are described in the<br \/>  individual files in \/usr\/share\/doc\/*\/copyright.<\/p>\n<p>  Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by<br \/>  applicable law.<\/p>\n<p>  runner@fv-az71:\/$ uname -a<br \/>  Linux fv-az71 5.3.0-1034-azure #35~18.04.1-Ubuntu SMP Mon Jul 13 12:54:45 UTC 2020 x86_64 x86_64 x86_64 GNU\/Linux<\/p>\n<p>  runner@fv-az71:\/proc$ cat \/proc\/cpuinfo<br \/>  processor&nbsp; &nbsp;&nbsp; &nbsp; : 0<br \/>  vendor_id&nbsp; &nbsp;&nbsp; &nbsp; : GenuineIntel<br \/>  cpu family&nbsp; &nbsp;&nbsp; &nbsp;: 6<br \/>  model&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;: 63<br \/>  model name&nbsp; &nbsp;&nbsp; &nbsp;: Intel(R) Xeon(R) CPU E5-2673 v3 @ 2.40GHz<br \/>  stepping&nbsp; &nbsp;&nbsp; &nbsp;: 2<br \/>  microcode&nbsp; &nbsp;&nbsp; &nbsp; : 0xffffffff<br \/>  cpu MHz&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;: 2397.222<br \/>  cache size&nbsp; &nbsp;&nbsp; &nbsp;: 30720 KB<br \/>  physical id&nbsp; &nbsp;: 0<br \/>  siblings&nbsp; &nbsp;&nbsp; &nbsp;: 2<br \/>  core id&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;: 0<br \/>  cpu cores&nbsp; &nbsp;&nbsp; &nbsp; : 2<br \/>  apicid&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; : 0<br \/>  initial apicid: 0<br \/>  fpu&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; : yes<br \/>  fpu_exception&nbsp; &nbsp;: yes<br \/>  cpuid level&nbsp; &nbsp;: 15<br \/>  wp&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;: yes<br \/>  flags&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt md_clear<br \/>  bugs&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit<br \/>  bogomips&nbsp; &nbsp;&nbsp; &nbsp;: 4794.44<br \/>  clflush size&nbsp; &nbsp; : 64<br \/>  cache_alignment : 64<br \/>  address sizes&nbsp; &nbsp;: 46 bits physical, 48 bits virtual<br \/>  power management:<\/p>\n<p>  processor&nbsp; &nbsp;&nbsp; &nbsp; : 1<br \/>  vendor_id&nbsp; &nbsp;&nbsp; &nbsp; : GenuineIntel<br \/>  cpu family&nbsp; &nbsp;&nbsp; &nbsp;: 6<br \/>  model&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;: 63<br \/>  model name&nbsp; &nbsp;&nbsp; &nbsp;: Intel(R) Xeon(R) CPU E5-2673 v3 @ 2.40GHz<br \/>  stepping&nbsp; &nbsp;&nbsp; &nbsp;: 2<br \/>  microcode&nbsp; &nbsp;&nbsp; &nbsp; : 0xffffffff<br \/>  cpu MHz&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;: 2397.222<br \/>  cache size&nbsp; &nbsp;&nbsp; &nbsp;: 30720 KB<br \/>  physical id&nbsp; &nbsp;: 0<br \/>  siblings&nbsp; &nbsp;&nbsp; &nbsp;: 2<br \/>  core id&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;: 1<br \/>  cpu cores&nbsp; &nbsp;&nbsp; &nbsp; : 2<br \/>  apicid&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; : 1<br \/>  initial apicid: 1<br \/>  fpu&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; : yes<br \/>  fpu_exception&nbsp; &nbsp;: yes<br \/>  cpuid level&nbsp; &nbsp;: 15<br \/>  wp&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;: yes<br \/>  flags&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt md_clear<br \/>  bugs&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit<br \/>  bogomips&nbsp; &nbsp;&nbsp; &nbsp;: 4794.44<br \/>  clflush size&nbsp; &nbsp; : 64<br \/>  cache_alignment : 64<br \/>  address sizes&nbsp; &nbsp;: 46 bits physical, 48 bits virtual<br \/>  power management:<\/p>\n<p>  runner@fv-az71:\/$ df -h<br \/>  Filesystem&nbsp; &nbsp;&nbsp; &nbsp;SizeUsed Avail Use% Mounted on<br \/>  udev&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;3.4G&nbsp; &nbsp;03.4G&nbsp; &nbsp;0% \/dev<br \/>  tmpfs&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;696M984K695M&nbsp; &nbsp;1% \/run<br \/>  \/dev\/sdb1&nbsp; &nbsp;&nbsp; &nbsp;84G&nbsp; &nbsp;58G&nbsp; &nbsp;26G70% \/<br \/>  tmpfs&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;3.4G8.0K3.4G&nbsp; &nbsp;1% \/dev\/shm<br \/>  tmpfs&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;5.0M&nbsp; &nbsp;05.0M&nbsp; &nbsp;0% \/run\/lock<br \/>  tmpfs&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;3.4G&nbsp; &nbsp;03.4G&nbsp; &nbsp;0% \/sys\/fs\/cgroup<br \/>  \/dev\/loop1&nbsp; &nbsp;&nbsp; &nbsp; 40M&nbsp; &nbsp;40M&nbsp; &nbsp;0 100% \/snap\/hub\/43<br \/>  \/dev\/loop0&nbsp; &nbsp;&nbsp; &nbsp; 97M&nbsp; &nbsp;97M&nbsp; &nbsp;0 100% \/snap\/core\/9804<br \/>  \/dev\/sdb15&nbsp; &nbsp;&nbsp; &nbsp;105M3.6M101M&nbsp; &nbsp;4% \/boot\/efi<br \/>  \/dev\/sda1&nbsp; &nbsp;&nbsp; &nbsp;14G4.1G9.0G32% \/mnt<br \/>  tmpfs&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;696M&nbsp; &nbsp;0696M&nbsp; &nbsp;0% \/run\/user\/1001<\/p>\n<p>  runner@fv-az71:\/$ free -h<br \/>  &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;total&nbsp; &nbsp;&nbsp; &nbsp;used&nbsp; &nbsp;&nbsp; &nbsp;free&nbsp; &nbsp;&nbsp; &nbsp;sharedbuff\/cache&nbsp; &nbsp;available<br \/>  Mem:&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;6.8G&nbsp; &nbsp;&nbsp; &nbsp;501M&nbsp; &nbsp;&nbsp; &nbsp;4.3G&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;26M&nbsp; &nbsp;&nbsp; &nbsp;2.0G&nbsp; &nbsp;&nbsp; &nbsp;6.0G<br \/>  Swap:&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; 4.0G&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; 0B&nbsp; &nbsp;&nbsp; &nbsp;4.0G<\/p>\n<p>  https:\/\/cdn.jsdelivr.net\/gh\/hishis\/forum-master\/public\/images\/patch.gif\t\t\t\t<\/p>\n<p>  \t\t\t\t\t<strong>zxxx<\/strong>  \t\t\t\t\u5927\u4f6c\u6709\u8bdd\u8bf4 : \t<\/p>\n<h3><\/h3>\n<p>  \t\trunner@fv-az71:~$curl -sL yabs.sh | bash<br \/>  # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #<br \/>  #&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;Yet-Another-Bench-Script&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;#<br \/>  #&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;v2020-06-20&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;#<br \/>  # https:\/\/github.com\/masonr\/yet-another-bench-script #<br \/>  # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #<\/p>\n<p>  Tue Sep1 06:47:29 UTC 2020<\/p>\n<p>  Basic System Information:<br \/>  &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br \/>  Processor: Intel(R) Xeon(R) CPU E5-2673 v3 @ 2.40GHz<br \/>  CPU cores: 2 @ 2397.222 MHz<br \/>  AES-NI&nbsp; &nbsp;: \u2714 Enabled<br \/>  VM-x\/AMD-V : \u274c Disabled<br \/>  RAM&nbsp; &nbsp;&nbsp; &nbsp;: 6.8G<br \/>  Swap&nbsp; &nbsp;&nbsp; &nbsp; : 4.0G<br \/>  Disk&nbsp; &nbsp;&nbsp; &nbsp; : 97G<\/p>\n<p>  fio Disk Speed Tests (Mixed R\/W 50\/50):<br \/>  &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br \/>  Block Size | 4k&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;(IOPS) | 64k&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;(IOPS)<br \/>  &#8212;&#8212;&nbsp; &nbsp;| &#8212;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&#8212;-| &#8212;-&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&#8212;- <br \/>  Read&nbsp; &nbsp;&nbsp; &nbsp; | 16.72 MB\/s&nbsp; &nbsp; (4.1k) | 34.97 MB\/s&nbsp; &nbsp;(546)<br \/>  Write&nbsp; &nbsp;&nbsp; &nbsp;| 16.71 MB\/s&nbsp; &nbsp; (4.1k) | 35.35 MB\/s&nbsp; &nbsp;(552)<br \/>  Total&nbsp; &nbsp;&nbsp; &nbsp;| 33.43 MB\/s&nbsp; &nbsp; (8.3k) | 70.32 MB\/s&nbsp; &nbsp; (1.0k)<br \/>  &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;|&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; |&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<br \/>  Block Size | 512k&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; (IOPS) | 1m&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;(IOPS)<br \/>  &#8212;&#8212;&nbsp; &nbsp;| &#8212;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&#8212;-| &#8212;-&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&#8212;- <br \/>  Read&nbsp; &nbsp;&nbsp; &nbsp; | 34.04 MB\/s&nbsp; &nbsp;&nbsp; &nbsp;(66) | 33.74 MB\/s&nbsp; &nbsp;&nbsp; &nbsp;(32)<br \/>  Write&nbsp; &nbsp;&nbsp; &nbsp;| 36.24 MB\/s&nbsp; &nbsp;&nbsp; &nbsp;(70) | 36.57 MB\/s&nbsp; &nbsp;&nbsp; &nbsp;(35)<br \/>  Total&nbsp; &nbsp;&nbsp; &nbsp;| 70.29 MB\/s&nbsp; &nbsp;(136) | 70.32 MB\/s&nbsp; &nbsp;&nbsp; &nbsp;(67)<\/p>\n<p>  iperf3 Network Speed Tests (IPv4):<br \/>  &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br \/>  Provider&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;| Location (Link)&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;| Send Speed&nbsp; &nbsp;&nbsp; &nbsp;| Recv Speed&nbsp; &nbsp;<br \/>  &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;|&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;|&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;|&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; <br \/>  Bouygues Telecom&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; | Paris, FR (10G)&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;| 1.29 Gbits\/sec| 2.33 Gbits\/sec <br \/>  Online.net&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; | Paris, FR (10G)&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;| 1.31 Gbits\/sec| 2.34 Gbits\/sec <br \/>  WorldStream&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;| The Netherlands (10G)&nbsp; &nbsp;| 823 Mbits\/sec&nbsp; &nbsp;| 2.05 Gbits\/sec <br \/>  wilhelm.tel&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;| Hamburg, DE (10G)&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;| 1.23 Gbits\/sec| 1.98 Gbits\/sec <br \/>  Biznet&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;| Bogor, Indonesia (1G)&nbsp; &nbsp;| 256 Mbits\/sec&nbsp; &nbsp;| 15.2 Mbits\/sec <br \/>  Hostkey&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; | Moscow, RU (1G)&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;| 854 Mbits\/sec&nbsp; &nbsp;| 861 Mbits\/sec<br \/>  Velocity Online&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;| Tallahassee, FL, US (10G) | 1.36 Gbits\/sec| 2.85 Gbits\/sec <br \/>  Airstream Comms&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;| Eau Claire, WI, US (10G)| 1.33 Gbits\/sec| 3.60 Gbits\/sec <br \/>  Hurricane Electric&nbsp; &nbsp;&nbsp; &nbsp;| Fremont, CA, US (10G)&nbsp; &nbsp;| busy&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;| busy&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<\/p>\n<p>  Geekbench 5 Benchmark Test:<br \/>  &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br \/>  Test&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;| Value&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; <br \/>  &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; |&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; <br \/>  Single Core&nbsp; &nbsp;| 715&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<br \/>  Multi Core&nbsp; &nbsp;&nbsp; &nbsp;| 1401&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<br \/>  Full Test&nbsp; &nbsp;&nbsp; &nbsp; | https:\/\/browser.geekbench.com\/v5\/cpu\/3508973\t\t\t\t<\/p>\n<p>  \t\t\t\t\t<strong>zxxx<\/strong>  \t\t\t\t\u5927\u4f6c\u6709\u8bdd\u8bf4 : \t<\/p>\n<h3><\/h3>\n<p>  \t\t \u672c\u5e16\u6700\u540e\u7531 zxxx \u4e8e 2020-9-1 15:57 \u7f16\u8f91 <\/p>\n<p> ssh runner@0.tcp.ngrok.io -p 17527<br \/>  @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@<br \/>  @&nbsp; &nbsp;&nbsp; &nbsp; WARNING: POSSIBLE DNS SPOOFING DETECTED!&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; @<br \/>  @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@<br \/>  The ECDSA host key for :17527 has changed,<br \/>  and the key for the corresponding IP address :17527<br \/>  is unknown. This could either mean that<br \/>  DNS SPOOFING is happening or the IP address for the host<br \/>  and its host key have changed at the same time.<br \/>  @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@<br \/>  @&nbsp; &nbsp; WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!&nbsp; &nbsp;@<br \/>  @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@<br \/>  IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!<br \/>  Someone could be eavesdropping on you right now (man-in-the-middle attack)!<br \/>  It is also possible that a host key has just been changed.<br \/>  The fingerprint for the ECDSA key sent by the remote host is<br \/>  SHA256:uZPVEk7PlOYFFru1JAeU9CORMMXVMN79opqJswO8vnw.<br \/>  Please contact your system administrator.<br \/>  Add correct host key in \/root\/.ssh\/known_hosts to get rid of this message.<br \/>  Offending ECDSA key in \/root\/.ssh\/known_hosts:1<br \/>  remove with:<br \/>  ssh-keygen -f &quot;\/root\/.ssh\/known_hosts&quot; -R &quot;:17527&quot;<br \/>  ECDSA host key for :17527 has changed and you have requested strict checking.<br \/>  Host key verification failed.\t\t\t\t<\/p>\n<p>  \t\t\t\t\t<strong>backlitz<\/strong>  \t\t\t\t\u5927\u4f6c\u6709\u8bdd\u8bf4 : \t<\/p>\n<h3><\/h3>\n<p>  \t\t\u7528\u6237\u6743\u9650\u53ef\u4ee5\u5b89\u88c5\u8f6f\u4ef6\u5417\uff1f\u9650\u5236\u591a\u5c11?\t\t\t\t<\/p>\n<p>  \t\t\t\t\t<strong>bugrun<\/strong>  \t\t\t\t\u5927\u4f6c\u6709\u8bdd\u8bf4 : \t<\/p>\n<h3><\/h3>\n<p>  \t\t\u521a\u5728\u516c\u4f17\u53f7\u770b\u5230\u60f3\u53d1\u88ab\u4f60\u53d1\u4e86 https:\/\/i.loli.net\/2020\/09\/01\/IpeEc4OunmvkWRw.png\t\t\t\t<\/p>\n<p>  \t\t\t\t\t<strong>bugrun<\/strong>  \t\t\t\t\u5927\u4f6c\u6709\u8bdd\u8bf4 : \t<\/p>\n<h3><\/h3>\n<p>  \t\t\u80fd\u642d\u7f51\u9875\u670d\u52a1\u5668\u5417\t\t\t\t<\/p>\n<p>  \t\t\t\t\t<strong>Zeros<\/strong>  \t\t\t\t\u5927\u4f6c\u6709\u8bdd\u8bf4 : \t<\/p>\n<h3><\/h3>\n<p>  \t\t\u4e3a\u4e86\u4e16\u754c\u548c\u5e73\uff0c\u8fd8\u662f\u4e0d\u5f04\u4e86:lolhttps:\/\/cdn.jsdelivr.net\/gh\/hishis\/forum-master\/public\/images\/patch.gif\t\t\t\t<\/p>\n<p>  \t\t\t\t\t<strong>van<\/strong>  \t\t\t\t\u5927\u4f6c\u6709\u8bdd\u8bf4 : \t<\/p>\n<h3><\/h3>\n<p>  \t\t\u8fd9\u4e2a\u53ef\u4ee5\u81ea\u5df1\u5b89\u8f6f\u4ef6\u5417\uff1f\t\t\t\t<\/p>\n<p>  \t\t\t\t\t<strong>\u4e00\u9897\u8d5b\u8247<\/strong>  \t\t\t\t\u5927\u4f6c\u6709\u8bdd\u8bf4 : \t<\/p>\n<h3><\/h3>\n<p>  \t\t\u767d**\u5927\u519b\u6b63\u5728\u8d76\u6765\u7684\u8def\u4e0a&#8230;\t\t\t  <\/p>\n","protected":false},"excerpt":{"rendered":"<p>zxxx \u5927\u4f6c\u6709\u8bdd\u8bf4 : \u4f7f\u7528 S&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[],"tags":[],"_links":{"self":[{"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/posts\/148400"}],"collection":[{"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/4563.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=148400"}],"version-history":[{"count":0,"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/posts\/148400\/revisions"}],"wp:attachment":[{"href":"http:\/\/4563.org\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=148400"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/4563.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=148400"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/4563.org\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=148400"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}