.bat 文件将环回控制器更新为外部 IP

发布于 2024-10-10 10:18:44 字数 385 浏览 6 评论 0原文

好的,我已经弄清楚如何使用 wget 获取外部 ip:

wget -q -O - http: //whatismyip.com/automation/n09230945.asp

将 ip 输出到命令控制台。添加> currentip.txt 结尾会将其写入文本文件。但我想做的是使用

netsh interface ip set address name="Local Area Connection 2" source=static addr=[WHAT DO I PUT HERE]

另外,一种使命令提示符不闪烁的方法也很好:)

Okay, so I've figured out how to get my external ip using wget:

wget -q -O - http://whatismyip.com/automation/n09230945.asp

that outputs the ip to the command console. adding > currentip.txt to the end will write it to a text file. But what I want to do is use

netsh interface ip set address name="Local Area Connection 2" source=static addr=[WHAT DO I PUT HERE]

Also, a way to make the command prompt not flash would be nice too :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼眸印温柔 2024-10-17 10:18:44

您可以使用变量来存储 IP 地址字符串。只需创建包含以下内容的 BAT 文件:

@echo off
SetLocal EnableExtensions EnableDelayedExpansion
For /F "Delims=" %%I In ('wget -q -O - http://automation.whatismyip.com/n09230945.asp') Do Set EXTERNAL_IP=%%~I
netsh interface ip set address name="Local Area Connection 2" source=static addr=!EXTERNAL_IP!

这应该可以解决问题。

You can use variable to store IP address string. Just create BAT file with following content:

@echo off
SetLocal EnableExtensions EnableDelayedExpansion
For /F "Delims=" %%I In ('wget -q -O - http://automation.whatismyip.com/n09230945.asp') Do Set EXTERNAL_IP=%%~I
netsh interface ip set address name="Local Area Connection 2" source=static addr=!EXTERNAL_IP!

That should do the trick.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文