我的服务器有5个不同的外部IP(均正常工作)

我使用以下方法添加了它们:

 ip addr add xx.xx.xx.xx/32 dev eth0
 ip addr add yy.yy.yy.yy/32 dev eth0
 ip addr add zz.zz.zz.zz/32 dev eth0

如何 curl 使用zz.zz.zz.zz IP地址?

最佳答案

您应该可以使用

curl --interface zz.zz.zz.zz http://example.com/

关于linux - 如何在curl上指定IP地址?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43398957/

10-10 02:47