mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
Always show IPv6 suffix in IPv6 host names
This commit is contained in:
parent
1e4068b798
commit
9097333cf1
34 changed files with 138 additions and 115 deletions
|
|
@ -45,21 +45,21 @@ and (flow["srv.ip"] ~= host_ip)) then
|
|||
if(flow["cli.ip"] == host_ip) then
|
||||
print('\n\t{"source": "'..flow["client_process"]["pid"]..'", "source_type": "proc", "source_pid": '.. flow["client_process"]["pid"] ..', "source_name": "'..
|
||||
flow["client_process"]["name"]..'", "target": "'..flow["srv.ip"]..'", "target_type": "host", "target_pid": -1, "target_name": "'
|
||||
.. ntop.getResolvedAddress(flow["srv.ip"]) ..'", "type": "proc2host"}')
|
||||
.. getResolvedAddress(hostkey2hostinfo(flow["srv.ip"])) ..'", "type": "proc2host"}')
|
||||
else
|
||||
print('\n\t{"target": "'..flow["client_process"]["pid"]..'", "target_type": "proc", "target_pid": '.. flow["client_process"]["pid"] ..
|
||||
', "target_name": "'.. flow["client_process"]["name"].."@".. flow["srv.ip"] ..'", "source": "'..flow["cli.ip"]..
|
||||
'", "source_type": "host", "source_pid": -1, "source_name": "'.. ntop.getResolvedAddress(flow["cli.ip"]) ..'", "type": "host2proc"}')
|
||||
'", "source_type": "host", "source_pid": -1, "source_name": "'.. getResolvedAddress(hostkey2hostinfo(flow["cli.ip"])) ..'", "type": "host2proc"}')
|
||||
end
|
||||
elseif(flow["server_process"] ~= nil) then
|
||||
if(flow["srv.ip"] == host_ip) then
|
||||
print('\n\t{"target": "'..flow["server_process"]["pid"]..'", "target_type": "proc", "target_pid": '.. flow["server_process"]["pid"]
|
||||
..', "target_name": "'.. flow["server_process"]["name"]..'", "source": "'..flow["cli.ip"]..
|
||||
'", "source_type": "host", "source_pid": -1, "source_name": "'.. ntop.getResolvedAddress(flow["cli.ip"]) ..'", "type": "proc2host"}')
|
||||
'", "source_type": "host", "source_pid": -1, "source_name": "'.. getResolvedAddress(hostkey2hostinfo(flow["cli.ip"])) ..'", "type": "proc2host"}')
|
||||
else
|
||||
print('\n\t{"target": "'..flow["server_process"]["pid"]..'", "target_type": "proc", "target_pid": '.. flow["server_process"]["pid"] ..
|
||||
', "target_name": "'.. flow["server_process"]["name"].."@".. flow["srv.ip"] ..'", "source": "'..flow["cli.ip"]..
|
||||
'", "source_type": "host", "source_pid": -1, "source_name": "'.. ntop.getResolvedAddress(flow["cli.ip"]) ..'", "type": "host2proc"}')
|
||||
'", "source_type": "host", "source_pid": -1, "source_name": "'.. getResolvedAddress(hostkey2hostinfo(flow["cli.ip"])) ..'", "type": "host2proc"}')
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue