9 lines
193 B
Python
9 lines
193 B
Python
import masstraceroute
|
|
import logging
|
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
|
|
targets = ["8.8.8.8", "9.9.9.9", "31.13.64.35"]
|
|
t = masstraceroute.MassTraceroute(5, 15, 2, targets, 12)
|
|
t.main()
|