From aeb6681e899d80684d5e79973cbd659d36953f3f Mon Sep 17 00:00:00 2001 From: Timmy Date: Thu, 9 Apr 2026 08:56:07 +0800 Subject: [PATCH] =?UTF-8?q?Initial=20commit:=20=E6=96=B0=E5=A2=9E=20DNS=20?= =?UTF-8?q?=E8=A8=98=E9=8C=84=E8=88=87=20SSH=20=E9=80=A3=E7=B7=9A=E8=A8=AD?= =?UTF-8?q?=E5=AE=9A=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - dns_records.md: tel / tpesupporter.tpech.gov.tw DNS A 記錄 - ssh_config.md: 跳板機與醫院伺服器 SSH 連線架構 - .gitignore: 排除 tar.gz 與 php 目錄 Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitignore | 2 ++ dns_records.md | 6 ++++++ ssh_config.md | 27 +++++++++++++++++++++++++++ 3 files changed, 35 insertions(+) create mode 100644 .gitignore create mode 100644 dns_records.md create mode 100644 ssh_config.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3b71a8a --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.tar.gz +php/ diff --git a/dns_records.md b/dns_records.md new file mode 100644 index 0000000..861005c --- /dev/null +++ b/dns_records.md @@ -0,0 +1,6 @@ +# DNS Records - tpech.gov.tw + +| 主機名稱 | 類型 | Class | TTL | 值 | +|---|---|---|---|---| +| tel.tpech.gov.tw. | A | IN | 600s | 106.105.181.40 | +| tpesupporter.tpech.gov.tw. | A | IN | 600s | 106.105.181.70 | diff --git a/ssh_config.md b/ssh_config.md new file mode 100644 index 0000000..21060db --- /dev/null +++ b/ssh_config.md @@ -0,0 +1,27 @@ +# SSH Config + +```ssh-config +Host jason_hsieh_home_srv + HostName 220.135.27.129 + User timmy + Port 2022 + +# Hospital Media Server (影音/通訊服務) +Host hospital_media + HostName 106.105.181.40 + User tpech_1duan + ProxyJump jason_hsieh_home_srv + +# Hospital Web Server (網頁/NPM 管理) +Host hospital_web + User tpech_1duan + HostName 106.105.181.70 + ProxyJump jason_hsieh_home_srv + # 端口轉發設定 +``` + +## 連線架構 + +- **jason_hsieh_home_srv** (220.135.27.129:2022) — 跳板機 +- **hospital_media** (106.105.181.40) — 影音/通訊服務,透過跳板連線,對應 `tel.tpech.gov.tw` +- **hospital_web** (106.105.181.70) — 網頁/NPM 管理,透過跳板連線,對應 `tpesupporter.tpech.gov.tw`