Created
June 16, 2023 20:24
-
-
Save bdietz400/e50105df72b513375fd38c8063518dda to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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