如何在 shell 命令行(linux)中确定从 torify(tor)获取的 IP 地址?

如何在 shell 命令行(linux)中确定从 torify(tor)获取的 IP 地址?

如何在 shell 命令行(linux)中确定从 torify(tor)获取的 IP 地址?

答案1

您必须查询外部服务,例如whatismyipaddress.com或 之类的。例如,我使用

wget 216.146.38.70:80 -O - -o /dev/null | cut -d" " -f6 | sed 's/<\/body><\/html>//'

供 tor 之外使用。使用 torify,您只需使用:

torify 2> /dev/null wget 216.146.38.70:80 -O - -o /dev/null | cut -d" " -f6 | sed 's/<\/body><\/html>//'

添加错误重定向来处理torify(许多)错误消息。

相关内容