> ## Content Index
> Fetch the complete content index at: https://kudithipudi.org/llms.txt
> Use this file to discover other available public pages before exploring further.

# HOW TO : Check websockets using curl
- URL: https://kudithipudi.org/how-to-check-websockets-using-curl/
- Published: 2016-10-14T12:37:41.000Z
- Updated: 2016-10-14T12:37:41.000Z
- Description: Found this good article by Mark Huot regarding using curl to check websocket servers at http://www.thenerdary.net/post/24889968081/debugging-websockets-with-curl curl -i -N -H “Connection: Upgrade” -H “Upgrade: websocket” -H “Host:...
- Author: admin
- Tags: HOWTO, Networking, security, Technology, Uncategorized, Web, howto, #wp, #wp-post, #Import 2026-08-23 02:32

Found this good article by Mark Huot regarding using curl to check websocket servers at [http://www.thenerdary.net/post/24889968081/debugging-websockets-with-curl](http://www.thenerdary.net/post/24889968081/debugging-websockets-with-curl?ref=kudithipudi.org)

```
curl -i -N -H "Connection: Upgrade" -H "Upgrade: websocket" -H "Host: echo.websocket.org" -H "Origin: http://www.websocket.org" http://echo.websocket.org

```