Difference between revisions of "MTR - Formated Command"

From wiki.1001solutions.net
(Created page with "Category:Post-It = Command = <nowiki> mtr -o "SDRL NBAW VG JMXI" --mpls <TARGET> </nowiki> ----")
 
Line 1: Line 1:
 
[[Category:Post-It]]
 
[[Category:Post-It]]
  
= Command =
+
== Command ==
  
 
  <nowiki>
 
  <nowiki>
 
mtr -o "SDRL  NBAW  VG  JMXI" --mpls <TARGET>
 
mtr -o "SDRL  NBAW  VG  JMXI" --mpls <TARGET>
 
</nowiki>
 
</nowiki>
 +
 +
 +
 +
== Script Example ==
 +
 +
<nowiki>
 +
#!/bin/bash
 +
#
 +
# mtr.sh script
 +
# USAGE : root#~: ./mtr.sh [IP ADDRESS]
 +
 +
mtr -o "SDRL  NBAW  VG  JMXI" --mpls $1
  
  
  
 
----
 
----

Revision as of 10:51, 11 March 2024


Command

mtr -o "SDRL  NBAW  VG  JMXI" --mpls <TARGET>


Script Example

<nowiki>
  1. !/bin/bash
  2. mtr.sh script
  3. USAGE : root#~: ./mtr.sh [IP ADDRESS]

mtr -o "SDRL NBAW VG JMXI" --mpls $1