MassTraceroute/example.py

9 lines
193 B
Python
Raw Normal View History

2021-12-17 18:31:51 +01:00
import masstraceroute
2021-12-17 18:51:46 +01:00
import logging
2021-12-17 19:49:26 +01:00
logging.basicConfig(level=logging.INFO)
2021-12-17 18:31:51 +01:00
targets = ["8.8.8.8", "9.9.9.9", "31.13.64.35"]
2021-12-17 19:49:26 +01:00
t = masstraceroute.MassTraceroute(5, 15, 2, targets, 12)
2021-12-17 18:31:51 +01:00
t.main()