Skip to content

Instantly share code, notes, and snippets.

@bdietz400
Created June 16, 2023 20:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bdietz400/e50105df72b513375fd38c8063518dda to your computer and use it in GitHub Desktop.
Save bdietz400/e50105df72b513375fd38c8063518dda to your computer and use it in GitHub Desktop.
-- description: netstat - jobs from telnet sessions Regular and SSL
SELECT
Remote_Address
,LOCAL_ADDRESS
, Job_Name
, Local_Port
,LOCAL_PORT_NAME
FROM Qsys2.Netstat_Job_Info i
WHERE Local_port in ( 23, 992 )
and job_name not like '%QTCP%'
and job_name is not null
order by local_address;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment