commit aeb6681e899d80684d5e79973cbd659d36953f3f Author: Timmy Date: Thu Apr 9 08:56:07 2026 +0800 Initial commit: 新增 DNS 記錄與 SSH 連線設定文件 - 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) 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`