Network outages, issues, and provider restrictions often affect even the largest services, which can be monitored, for example, via SBOY.RF or DownDetector.
SimpleOne is also a web service; to interact with it via a browser, network connectivity must exist between the user’s device and the infrastructure with servers hosting the application. If network connectivity is disrupted, TCP/IP requests from the client will not result in proper packet transmission and reception, leading to various errors such as DNS resolution failures, timeouts, connection resets, blank screens, freezes, etc.
In this guide, we collect useful tools and commands (provided for informational purposes only) to quickly localize the issue, determine at which level of the OSI model it occurred, and identify which party is responsible for restoring availability.
Curl
Curl is a command-line utility for sending network requests to URLs (resource addresses on the internet) with a wide range of additional flags and features.
curl -v https://home.simpleone.ru/
The -v flag provides detailed output of the connection process, request, and response. From this output, you can determine whether the domain name resolves to an IP address via DNS, whether that IP is reachable over the network, and whether a secure TLS connection is established.
When the resource is functioning correctly with acceptable speed, you will receive an HTTP/1.1 200 OK status code and a message indicating a successful connection, such as: Connection #0 to host home.simpleone.ru left intact.
It is important to verify that network issues are not local. To do this, check other websites within the same infrastructure or public resources to confirm whether any other sites are accessible and whether there is general internet connectivity, for example:
curl -v https://2ip.ru/ # returns your public IP address
curl -v https://www.google.com/
If you experience difficulties accessing any resources, better to test your internet speed using specialized services (https://speedtest.ru/) and contact your ISP.
Ping
Ping is a simple command to check whether a site or address is reachable. It helps determine:
- Whether requests reach the resource and whether it responds
- The response time in milliseconds
- Whether there is packet loss in the network
# Ping domain name with 3 test packets
ping -c 3 home.simpleone.ru
# Ping Google Public DNS — commonly used to verify internet connectivity
ping 8.8.8.8
In the absence of network issues, response times should be low and stable (without spikes), and packet loss should be 0%.
Traceroute
If ping shows packet loss or delays, use traceroute to examine the path packets take through intermediate nodes.
Traceroute tracks the route of network packets from the client to the target server, displaying all intermediate hops. It helps determine:
- Where delays occur — on which intermediate hop they appear
- Where packets are lost — on which segment of the route packet loss occurs
# On Windows
tracert test.simpleone.ru
# On Linux
traceroute test.simpleone.ru
mtr test.simpleone.ru # real-time dynamic traceroute
The screenshot below shows an example of traceroute where packets reach the final node stably and without loss.
The * * * symbols are not necessarily indicative of a problem; they simply mean that some intermediate nodes do not respond to ICMP requests.
The absence of a response from the final hop or increased latency at a specific hop can help localize the network issue.
Testing from Other Devices, Networks, and Locations
In many cases, accessing the site from a mobile device or another computer helps determine whether the issue is specific to a particular PC or network, or whether it occurs from other devices and locations as well.
There are also specialized services for checking availability:
- Check-host — allows testing the availability of a specific internet resource from dozens of different locations. Supports HTTP requests, DNS, and Ping checks.
- Interactive virtual web browser Browserling for testing website functionality over the internet
We would appreciate it if you shared your own network troubleshooting techniques in the comments!



