目前,我公司有 6 条互联网线路(1 条租用线路和 5 条光纤线路)。只有租用线路 (eth1) 具有静态 IP 地址。因此,如果我想让用户访问安全站点(检查 IP 地址,例如 Apple Distinguish Educators 登录),我必须将请求定向到租用线路:
rule 71 {
description some.secured.site
destination {
address 52.43.56.77
}
inbound-interface eth0
interface eth1 {
weight 200
}
protocol all
}
但该网站不断更改其 IP 地址。
有什么办法可以做同样的事情,但使用域名作为目的地?
谢谢,Trinh