1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[Windows][telnet] Windowsで特定アドレスの指定ポートの疎通確認を行う

Last updated at Posted at 2017-01-25

telnetで特定のポートの開放状態を確認する方法まとめ

実行方法

Windowsでは telnet で確認できる。
telnet 192.168.1.1 80 のように、telnet <ip adress> <port> と指定する。
Ctrl-C 等で終了する。

成功した場合
> telnet <ip adress> <port>
Trying <ip adress>...
Connected to <ip adress>.
失敗した場合
> telnet <ip adress> <port>
Trying <ip adress>...
telnet: Unable to connect to remote host: Attempt to connect timed out without establishing a connection

PowerShellで確認する方法

PowerShellでも確認できるらしい。

telnetコマンドのないWindowsでのTCPポート確認 - Qiita

関連

[Linux] sshの接続前に確認を行う(port番号を指定しての特定IPの疎通確認) - Qiita

参考

Tech TIPS:Windowsでポートのリッスン状態を調査する - @IT

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?