You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Addresses in prefix 2a07:1ec0:775 are not being annotated by site.Annotate(). This is showing up in the prototype pcap parser, where we use it to identify which end of a connection is the server.
The three IP addresses (in ndt/pcap data) that are not being annotate are:
2a07:1ec0:775::203
2a07:1ec0:775::216
2a07:1ec0:775::229
Annotation seems to be working fine for trn02 in uuid-annotator, based on ndt7 tables:
SELECT raw.ServerIP, Server FROM measurement-lab.ndt.ndt7
WHERE date > "2021-12-14"
AND raw.ServerIP LIKE "%2a07:1ec0:775%"
LIMIT 1000
It also seems to be working ok in tcpinfo annotation in the legacy pipeline:
SELECT Server FROM measurement-lab.ndt.tcpinfo
WHERE partition_date > "2021-12-14"
AND Server.IP LIKE "%2a07:1ec0:775%"
LIMIT 1000
The text was updated successfully, but these errors were encountered:
Addresses in prefix 2a07:1ec0:775 are not being annotated by site.Annotate(). This is showing up in the prototype pcap parser, where we use it to identify which end of a connection is the server.
The three IP addresses (in ndt/pcap data) that are not being annotate are:
2a07:1ec0:775::203
2a07:1ec0:775::216
2a07:1ec0:775::229
These should be annotated with siteinfo for trn02, which include 2a07:1ec0:775::/48
https://siteinfo.mlab-oti.measurementlab.net/v1/sites/annotations.json
Annotation seems to be working fine for trn02 in uuid-annotator, based on ndt7 tables:
SELECT raw.ServerIP, Server FROM
measurement-lab.ndt.ndt7
WHERE date > "2021-12-14"
AND raw.ServerIP LIKE "%2a07:1ec0:775%"
LIMIT 1000
It also seems to be working ok in tcpinfo annotation in the legacy pipeline:
SELECT Server FROM
measurement-lab.ndt.tcpinfo
WHERE partition_date > "2021-12-14"
AND Server.IP LIKE "%2a07:1ec0:775%"
LIMIT 1000
The text was updated successfully, but these errors were encountered: