.bat 文件将环回控制器更新为外部 IP
好的,我已经弄清楚如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用变量来存储 IP 地址字符串。只需创建包含以下内容的 BAT 文件:
这应该可以解决问题。
You can use variable to store IP address string. Just create BAT file with following content:
That should do the trick.