- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

iKickFish
Explorer
05-14-2018
06:03 AM
Hello fellow splunkers,
Fairly remedial question but I have a heavy forwarder that has stopped reporting to splunk and need to find the IP of it. I currently run the following search in order to find all hosts reporting within a specific time period but I can only see hosts name and not IP. Is there any way of easily location the IP of a host?
index=_internal sourcetype=splunkd group=tcpin_connections | stats first(version) by hostname
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

FrankVl
Ultra Champion
05-14-2018
06:45 AM
Just do your stats by sourceIp instead of hostname?
Or do:
index=_internal sourcetype=splunkd group=tcpin_connections | stats first(version) latest(sourceIp) by hostname
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

FrankVl
Ultra Champion
05-14-2018
06:45 AM
Just do your stats by sourceIp instead of hostname?
Or do:
index=_internal sourcetype=splunkd group=tcpin_connections | stats first(version) latest(sourceIp) by hostname
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

iKickFish
Explorer
05-15-2018
07:35 AM
Excellent!
Thanks Frank!
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

ranjitbrhm1
Communicator
05-14-2018
06:20 AM
Ping the hostname perhaps on a terminal? It resolves by itself.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

iKickFish
Explorer
05-14-2018
06:25 AM
The forwarder is down currently, I want to find the IP of it from when it was last reporting successfully.
