发现 TCP/IP 套接字?

发布于 2024-09-19 01:12:28 字数 182 浏览 9 评论 0原文

我为此使用 Objective-C 和 Java,但我认为这个问题与语言无关。

我有一个通过 TCP/IP 与 Java 服务器通信的 iOS 客户端。现在我需要至少告诉其中一方另一方的 IP 地址。是否有一种标准方法可以“发现”IP 地址(从一侧或另一侧)?

另外,切换到 UDP 将如何影响答案?

I am using Objective-C and Java for this, but I think the question is language-neutral.

I have an iOS client that talks to a Java server over TCP/IP. Right now I need to tell at least one of the parties the IP address of the other. Is there a standard way that I can "discover" IP addresses (from one side or the other)?

Also, how would switching to UDP affect the answer?

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

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

发布评论

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

评论(3

酸甜透明夹心 2024-09-26 01:12:28

有许多协议用于发现网络上的其他设备/服务器。 iOS 领域最常用的之一是“Bonjour”。查看 Apple 的示例应用程序。

There are many protocols for discovering other devices/servers on the network. One of the most commonly used in the iOS realm is "Bonjour". Look at Apple's sample apps.

病毒体 2024-09-26 01:12:28

是否有一种标准方法可以让我“发现”IP 地址(从一侧或另一侧)?

是的,这就是所谓的“端口嗅探”,并且肯定会给您带来麻烦,因为这是一种常见的攻击。

您只需尝试某个范围内的所有 IP 地址即可。许多防火墙产品会将此视为“入侵”尝试,并使用入侵检测软件记录您的信息。

我们几乎从不“发现”地址。

这就是“域名”的用途。

Is there a standard way that I can "discover" IP addresses (from one side or the other)?

Yes, it's called "port sniffing" and will certainly get you in trouble since it's a common kind of attack.

You simply try all IP addresses in a range. Many firewall products will consider this an "intrusion" attempt and log you with the intrusion detection software.

We almost never "discover" addresses.

That's what "domain names" are for.

孤城病女 2024-09-26 01:12:28

为什么服务器不能有众所周知的 DNS 名称?

Why can't the server have a well known DNS name?

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