How to install MTR in mac
MTR is a useful command-line utility that combines the functionality of the ‘traceroute’ and ‘ping’ programs in a single network diagnostic tool.
- Download source from ftp://ftp.bitwizard.nl/mtr/
- Extract it:
tar zxvf mtr-0.xx.tar.gz - Now do the following
cd /path/to/mtr-0.xx/
export LIBS='-lm -ltermcap -lresolv'
./configure
make
sudo make install
Adding alias for the command mtr
vim .profile
alias mtr=/usr/local/sbin/mtr
Testing the command
mtr google.com

Source:
- MTR

