如何更改传出 UDP 数据包的目的地?
Windows 已经有这种类型的 TCP 数据包(主机文件),是否有文件或应用程序允许我重定向传出数据包?因此,如果我在端口 80 上发送,我将能够将其重定向到另一个 IP,也许还有另一个端口(并不是说我需要另一个端口)。
我使用winsock以及Microsoft VB6(是的,我知道旧的)来将数据包发送到IP。
谢谢
Windows has this type of thing with TCP packets already (Hosts File), is there a file or application that will allow me to redirect outgoing packets? So if I were sending on port 80, I would be able to redirect it to another ip and maybe another port (not that I need another port).
I'm using winsock in addition with Microsoft VB6 (yes I know old) to send packets to an ip.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
主机文件是一种覆盖 DNS 服务器名称查找的方法。它将影响所有协议 - 包括 tcp 和 udp。
不过,只要您发送到特定名称,它就会被覆盖。如果直接使用 IP 地址而不是主机名,则不会涉及主机名查找,也不会涉及主机文件。
The hosts file is a way to override the dns server name lookup. It will affect all protocols -including tcp and udp.
It will only override as long as you are sending to a specific name though. If you use the ip address directly instead of a host name, no host name lookup and no hosts file will be involved.