diff options
author | coxley <codey.a.oxley+os@gmail.com> | 2016-11-07 16:42:57 -0800 |
---|---|---|
committer | coxley <codey.a.oxley+os@gmail.com> | 2016-11-07 16:42:57 -0800 |
commit | e1176c531dc2e7d0369213970acfa6052ae85c20 (patch) | |
tree | ad2e7f2cc9e26a13dd1f6269dbeb699068ed9e4e | |
parent | 1f4cbfd567ea77e30316089125c6c83c341f88de (diff) | |
download | fbtracert-e1176c531dc2e7d0369213970acfa6052ae85c20.zip fbtracert-e1176c531dc2e7d0369213970acfa6052ae85c20.tar.gz fbtracert-e1176c531dc2e7d0369213970acfa6052ae85c20.tar.bz2 |
Sends note about source IP being used to stderr
-rwxr-xr-x | fbtracert | bin | 0 -> 3806719 bytes | |||
-rw-r--r-- | main.go | 1 |
2 files changed, 1 insertions, 0 deletions
diff --git a/fbtracert b/fbtracert Binary files differnew file mode 100755 index 0000000..1581e15 --- /dev/null +++ b/fbtracert @@ -600,6 +600,7 @@ func main() { fmt.Fprintf(os.Stderr, "Could not identify a source address to trace from\n") return } + fmt.Fprintf(os.Stderr, "Using as source address: %s\n", source.String()) fmt.Fprintf(os.Stderr, "Starting fbtracert with %d probes per second/ttl, base src port %d and with the port span of %d\n", *probeRate, *baseSrcPort, *maxSrcPorts) if flag.Lookup("logtostderr").Value.String() != "true" { |