Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


linux client side network uptime monitoring
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

linux client side network uptime monitoring

Which client side linux network uptime monitoring utility (that can log timestamp/downtime) would you recommend?

Thanks.

Thanked by 1msallak1

Comments

  • while sleep 10 ; do ping -q -w1 -W1 -c1  8.8.8.8 >/dev/null || date  ; done >> /var/log/outage.log
    
  • @rcxb said:
    while sleep 10 ; do ping -q -w1 -W1 -c1 8.8.8.8 >/dev/null || date ; done >> /var/log/outage.log

    Scam. Now my server won't start.

  • Our AGENT checks can do some cool client-side network monitoring with 23 different check types.

    https://nodeping.com/agent_check.html

  • o_be_oneo_be_one Member
    edited September 2021

    Well HetrixTools for example has a client side probe if you want something hosted and easy.

    You can also check NetData which is local hosted and can report to the actually free NetData Cloud for easy follow up and alerting. I think NetData can also be configured to only do network monitoring.

    When i was working for OVH, i've also made a script to record DDoS attempts to help DDoS team. I don't know, maybe it can help and even do more that what you need? It will also record TCPDump so you can analize later (or, for some providers like OVH, you can sent it to them so they can check more about the DDoS if it's the case).
    https://github.com/o-be-one/git-deploy-linux/blob/master/ddosCheck.bash

    Good luck :) !

    Thanked by 2atomi tolovall
Sign In or Register to comment.