获取网站的端口号

发布于 2024-12-06 11:10:10 字数 148 浏览 0 评论 0原文

如何使用程序获取网站的端口号。有什么方法/途径可以用来知道网站的端口号?

或者,如果我知道我的端口号 52970212.58.241.131 这个 IP 连接,我可以知道我的 PC 的端口号所连接的端口号吗?

How can i obtain the port number of a website using a program. Is there any method / way that i can use to know the port number of a website ?

Or, if i know that my port number 52970 is connected with 212.58.241.131 this ip , can i know the port number with which the port number of my PC is connected ?

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

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

发布评论

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

评论(5

找个人就嫁了吧 2024-12-13 11:10:11

我相信您需要回顾一下端口号的概念。

默认情况下,HTTP 使用端口 80。因此,您访问的单个网站不需要访问任何其他端口。

TCP 和 UDP 端口号

I believe you need to review the concept of port numbers.

By default, HTTP uses port 80. So an individual website you visit won't need access to any other port.

TCP and UDP port numbers

三生池水覆流年 2024-12-13 11:10:11

我不确定您在寻找什么,但从 PHP 脚本中您可以通过 $_SERVER["REMOTE_PORT"] 获取客户端用于连接到您的 Web 服务器的端口

I am not sure what you are looking for but from a PHP script you can get the port the client uses to connect to your web server with $_SERVER["REMOTE_PORT"]

睡美人的小仙女 2024-12-13 11:10:11

http 的端口号是 80,ssl 的端口号是 443。
如果您使用的是 Windows,请启动 cmd 并输入 netstat -a -b 以查看哪个程序连接到何处。
请详细说明或发布您想要实现的目标的示例,因为我不太清楚。
找到远程或服务器端口

$_SERVER['REMOTE_PORT']

€dit:在 php 中,您可以使用或

$_SERVER['SERVER_PORT']

如果我是对的,您正在寻找远程端口。

http://php.net/manual/en/reserved.variables.server.php

对于 telnet 请看这里:
http://www.geckotribe.com/php-telnet/

The port number for http is port 80 and 443 for ssl.
If you are on windows start up cmd and type netstat -a -b to see what program connects where.
Please elaborate or post an example of what you want to achieve as it's not quite clear to me.
€dit: in php you can find the remote or server port with

$_SERVER['REMOTE_PORT']

or

$_SERVER['SERVER_PORT']

If I am right, you are looking for the remote port.

http://php.net/manual/en/reserved.variables.server.php

for telnet look here :
http://www.geckotribe.com/php-telnet/

宛菡 2024-12-13 11:10:11

我不确定这是否对您有帮助,但扫描端口的黄金标准必须是 nmap。

http://nmap.org/

您可以扫描特定 IP 地址的开放端口。

I am not sure if this helps you at all but the gold standard for scanning ports has to be nmap.

http://nmap.org/

You can scan open ports for a specific IP address.

鯉魚旗 2024-12-13 11:10:11
echo $_SERVER['SERVER_PORT']."<br/>";
echo $_SERVER['REMOTE_PORT']."<br/>";

'SERVER_PORT'

Web 服务器使用的服务器计算机上的端口
沟通。对于默认设置,这将为“80”;使用 SSL,用于
例如,将其更改为您定义的安全 HTTP 端口
是。

'REMOTE_PORT'

用户计算机上用于与网络通信的端口
服务器。

echo $_SERVER['SERVER_PORT']."<br/>";
echo $_SERVER['REMOTE_PORT']."<br/>";

'SERVER_PORT'

The port on the server machine being used by the web server for
communication. For default setups, this will be '80'; using SSL, for
instance, will change this to whatever your defined secure HTTP port
is.

'REMOTE_PORT'

The port being used on the user's machine to communicate with the web
server.

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