Coder Social home page Coder Social logo

Comments (3)

auerswal avatar auerswal commented on June 27, 2024

I am not really sure what you want to achieve with the above fping invocation.

It seems to me as if fping -u -r 1 10.10.5.90 10.10.5.1 already provides all the interesting information. So what purpose have the options -c 1 -q? Do you attempt to get the following output (I am using two different IP addresses for illustration)?

$ fping -r1 -q -u -c1 8.8.8.7 8.8.8.8 2>&1 | grep -v ,
8.8.8.7 : xmt/rcv/%loss = 1/0/100%

Since the fping command line specifies to send just one echo request, the statistics can be added with, e.g., sed:

$ fping -r1 -u 8.8.8.7 8.8.8.8 | sed 's,$, : xmt/rcv/%loss = 1/0/100%,'
8.8.8.7 : xmt/rcv/%loss = 1/0/100%

It seems to me as if just -u -r N already provides all the information the combination of -r 1 -c N -q -u can give.

from fping.

asarubbo avatar asarubbo commented on June 27, 2024

I am not really sure what you want to achieve with the above fping invocation.

I was just saying that by adding -c 1 (so just a count) it prints out the reachable targets and their stats, while with -q it shouldn't.

from fping.

auerswal avatar auerswal commented on June 27, 2024

The option -c N prints one output line for every received reply or timeout, and one summary line per target at the end.

The combination -c N -q only prints the summary line per target, but not the individual per-probe reports.

If you want the output format of -u, i.e., just the Name or IP address of each unreachable target, but want fping to try several times to reach each target, you can use -r N optionally combined with -B 1, instead of using -c N. (By default, fping uses -r 3.)

from fping.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.