We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c68170 commit 20c0561Copy full SHA for 20c0561
traceroute-whois
@@ -0,0 +1,22 @@
1
+# traceroute to endpoint using regular icmp traceroute, then pull OriginAS and NetName from whois from each hop
2
+#
3
+[root@fedora-lab ~]# traceroute -n google.com > trace.txt; for i in $(awk '{print$2}' trace.txt | grep -v '\*' | grep -v 'to'); do echo $i; whois $i | grep OriginAS; whois $i | grep NetName; done
4
+68.183.64.254
5
+OriginAS:
6
+NetName: DO-13
7
+138.197.250.170
8
9
+NetName: DIGITALOCEAN-16
10
+209.85.175.196
11
12
+NetName: GOOGLE
13
+108.170.252.1
14
+OriginAS: AS15169
15
16
+74.125.37.125
17
18
19
+172.217.18.14
20
21
22
+[root@fedora-lab ~]#
0 commit comments