Geo location not working

asked 2025-04-29 16:04:03 +0000

I am using most current release of Wireshark. Mindmax dbs have content. Wire shark pointing to correct folder of DBS C:\Users\nrankis\AppData\Roaming\Wireshark\MaxmindDBs. Wireshark is capturing from WIFI IPV 4 & 6 correctly. Under statistics Tab -endpoint IPV tab shows city and country but data is blank. I have watched on utube all the videos. I need help to get it working.. Thanks in advance

edit retag flag offensive close merge delete

Comments

Have you verified the address manually with mmdbresolve ?

C:\>echo 4.4.4.4 | mmdbresolve -f ./GeoLite2-City.mmdb
[init]
db.0.path: ./GeoLite2-City.mmdb
db.0.status: OK
db.1.type: GeoLite2-City
mmdbresolve.status: true
# End init
[4.4.4.4]
# GeoLite2-City
country.iso_code: US
country.names.en: United States
city.names.en: Nashville
location.latitude: 36.096400
location.longitude: -86.821200
location.accuracy_radius: 50
# End 4.4.4.4

Location moved with most current database (GeoLite2-City_20250429.tar.gz):
(And quite a big difference in location accuracy)

C:\>echo 4.4.4.4 | mmdbresolve -f .\GeoLite2-City.mmdb
[init]
db.0.path: .\GeoLite2-City.mmdb
db.0.status: OK
db.1.type: GeoLite2-City
mmdbresolve.status: true
# End init
[4.4.4.4]
# GeoLite2-City
country.iso_code: US
country.names.en: United States
city.names.en: Grove City
location.latitude: 39.879800
location.longitude: -83.088300
location.accuracy_radius: 1000
# End 4.4.4.4
Chuckc gravatar imageChuckc ( 2025-04-29 16:25:37 +0000 )edit