Windows-Server-2019
dns多伺服器轉發
我有主機名
ftp.example.com
是否可以通過 DNS 重定向到不同的伺服器 例如
ftp://ftp.example.com
到伺服器 192.168.xx.1https://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 代理配置很常見,你會發現很多例子。