Windows-Server-2019

dns多伺服器轉發

  • April 8, 2022

我有主機名ftp.example.com

是否可以通過 DNS 重定向到不同的伺服器 例如ftp://ftp.example.com到伺服器 192.168.xx.1 https://ftp.example.com到伺服器 192.168.xx.2

不是通過 DNS,但可以通過代理伺服器實現。這是一個非常基本的 HAproxy 範例:

listen http :80
   mode http
   server http1 192.168.xx.1:80 check

listen FTP :21,:10000-10250
   mode tcp
   server ftp01 192.168.xx.2 check port 21

FTP 部分在這裡有更詳細的解釋。HTTP 代理配置很常見,你會發現很多例子。

引用自:https://serverfault.com/questions/1098112