This is a text-only version of the following page on https://raymii.org:
---
Title       : 	Traceroute to Smokeping Target config
Author      : 	Remy van Elst
Date        : 	28-06-2014
URL         : 	https://raymii.org/s/snippets/Traceroute_to_Smokeping_Target_Config.html
Format      : 	Markdown/HTML
---



This little one-liner converts the output of traceroute to Smokeping Target
output. This way you can build your smokeping config faster.

<p class="ad"> <b>Recently I removed all Google Ads from this site due to their invasive tracking, as well as Google Analytics. Please, if you found this content useful, consider a small donation using any of the options below:</b><br><br> <a href="https://leafnode.nl">I'm developing an open source monitoring app called  Leaf Node Monitoring, for windows, linux & android. Go check it out!</a><br><br> <a href="https://github.com/sponsors/RaymiiOrg/">Consider sponsoring me on Github. It means the world to me if you show your appreciation and you'll help pay the server costs.</a><br><br> <a href="https://www.digitalocean.com/?refcode=7435ae6b8212">You can also sponsor me by getting a Digital Ocean VPS. With this referral link you'll get $100 credit for 60 days. </a><br><br> </p>


There is an [IPv6 version of this article][2].

You can see smokeping in action [here at serverius][3]. More info about
[Smokeping here on the website][4].

I have most hops from my ISP in my smokeping config to see where the latency
might be. This traceroute one liner helps to get the right config.

    
    
    traceroute -w 3 example.org | grep -v "*" | sed -e 's/(//g' -e 's/)//g' | awk '{ gsub(/\./,"_",$2); print "++ "$2"\nmenu = "$3"\ntitle = "$2" - "$3"\nhost = "$3"\n"}'
    

The "*" are grepped out, the `()` are removed from the IP address and we also
replace . in the hostname so that Smokeping doesn't barf on that.

This will give you something like this (for [tweakers.net][5]:
    
    
    ++ 0_so-1-2-0_xr1_tc2_xs4all_net
    menu = 194.109.5.14
    title = 0_so-1-2-0_xr1_tc2_xs4all_net - 194.109.5.14
    host = 194.109.5.14
    
    ++ amsix_true_nl
    menu = 195.69.144.171
    title = amsix_true_nl - 195.69.144.171
    host = 195.69.144.171
    
    ++ ams7_edge01_tengig-6-1-11_true_nl
    menu = 87.233.1.218
    title = ams7_edge01_tengig-6-1-11_true_nl - 87.233.1.218
    host = 87.233.1.218
    
    ++ tweakers_net
    menu = 213.239.154.20
    title = tweakers_net - 213.239.154.20
    host = 213.239.154.20
    

Or for [reddit.com][6]:
    
    
    ++ 0_so-1-2-0_xr1_tc2_xs4all_net
    menu = 194.109.5.14
    title = 0_so-1-2-0_xr1_tc2_xs4all_net - 194.109.5.14
    host = 194.109.5.14
    
    ++ eth7-1_edge1_ams5_nl_atrato_net
    menu = 195.69.145.229
    title = eth7-1_edge1_ams5_nl_atrato_net - 195.69.145.229
    host = 195.69.145.229
    
    ++ eth1-6_edge2_ams5_nl_as5580_net
    menu = 78.152.44.44
    title = eth1-6_edge2_ams5_nl_as5580_net - 78.152.44.44
    host = 78.152.44.44
    
    ++ 78_152_38_234
    menu = 78.152.38.234
    title = 78_152_38_234 - 78.152.38.234
    host = 78.152.38.234
    
    ++ a23-62-98-210_deploy_static_akamaitechnologies_com
    menu = 23.62.98.210
    title = a23-62-98-210_deploy_static_akamaitechnologies_com - 23.62.98.210
    host = 23.62.98.210
    

This can be pasted right in to Smokeping's config.

I use the following version of Traceroute:

    
    
    $ traceroute -V
    Modern traceroute for Linux, version 2.0.19, Sep 29 2013
    Copyright (c) 2008  Dmitry Butskoy,   License: GPL v2 or any later
    

   [1]: https://www.digitalocean.com/?refcode=7435ae6b8212
   [2]: https://raymii.org/s/snippets/IPv6_Traceroute_to_Smokeping_Target_Config.html
   [3]: http://smokeping.serverius.eu/
   [4]: http://oss.oetiker.ch/smokeping/
   [5]: https://tweakers.net
   [6]: http://reddit.com

---

License:
All the text on this website is free as in freedom unless stated otherwise. 
This means you can use it in any way you want, you can copy it, change it 
the way you like and republish it, as long as you release the (modified) 
content under the same license to give others the same freedoms you've got 
and place my name and a link to this site with the article as source.

This site uses Google Analytics for statistics and Google Adwords for 
advertisements. You are tracked and Google knows everything about you. 
Use an adblocker like ublock-origin if you don't want it.

All the code on this website is licensed under the GNU GPL v3 license 
unless already licensed under a license which does not allows this form 
of licensing or if another license is stated on that page / in that software:

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.

Just to be clear, the information on this website is for meant for educational 
purposes and you use it at your own risk. I do not take responsibility if you 
screw something up. Use common sense, do not 'rm -rf /' as root for example. 
If you have any questions then do not hesitate to contact me.

See https://raymii.org/s/static/About.html for details.