diff --git a/content/roadmaps/102-devops/content/102-managing-servers/101-live-in-terminal/110-traceroute.md b/content/roadmaps/102-devops/content/102-managing-servers/101-live-in-terminal/110-traceroute.md
index 0295e347c..d35cf2aca 100644
--- a/content/roadmaps/102-devops/content/102-managing-servers/101-live-in-terminal/110-traceroute.md
+++ b/content/roadmaps/102-devops/content/102-managing-servers/101-live-in-terminal/110-traceroute.md
@@ -1 +1,9 @@
-# Traceroute
\ No newline at end of file
+# Traceroute
+
+`traceroute` command is a command in Linux that prints the route a network packet takes from its source (e.g. your computer) to the destination host (e.g., roadmap.sh). It is quite valuable in investigating slow network connections as it can help us spot the slow leg of the network packet journey through the internet.
+
+It has the following syntax: `$ traceroute [OPTIONS] DESTINATION` e.g. `$ traceroute roadmap.sh`
+
+Free Content
+How to Run Traceroute in Linux
+Traceroute command in Linux with examples