我有主机名ftp.example.com
可以通过 DNS 重定向到不同的服务器吗?例如ftp://ftp.example.com
从服务器 192.168.xx.1
https://ftp.example.com
重定向到服务器 192.168.xx.2
答案1
不是通过 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 代理配置非常常见,您会发现很多它的示例。