Endpoint Protection

 View Only
Expand all | Collapse all

Trying to run Network Threat report, and it times out

Sonihal

SonihalMay 17, 2013 12:48 PM

Migration User

Migration UserJun 04, 2013 08:24 AM

  • 1.  Trying to run Network Threat report, and it times out

    Posted May 14, 2013 12:42 PM

    When I try to run Network Threat report on SEPM 12, I get the error:

     



      • 2.  RE: Trying to run Network Threat report, and it times out

        Posted May 14, 2013 12:45 PM

        How clients are you running it for?

        What happens if you try it for a specific group instead as a test?



      • 3.  RE: Trying to run Network Threat report, and it times out

        Broadcom Employee
        Posted May 14, 2013 12:46 PM

        can you increase the timeout values further say 900 seconds and check if the report is generated?



      • 4.  RE: Trying to run Network Threat report, and it times out

        Posted May 14, 2013 09:29 PM

        Have a look here as well and specifically regarding the further changes timeout values in httpd.conf file:

        Changing timeout parameters for reviewing reports and logs

        Article:HOWTO55388  |  Created: 2011-06-29  |  Updated: 2012-06-28  |  Article URL http://www.symantec.com/docs/HOWTO55388

         



      • 5.  RE: Trying to run Network Threat report, and it times out

        Posted May 17, 2013 08:34 AM

        I have tried everything so far. Sybastian, I will read your artical



      • 6.  RE: Trying to run Network Threat report, and it times out

        Posted May 17, 2013 08:47 AM

        I tried everything it is still not working



      • 7.  RE: Trying to run Network Threat report, and it times out

        Posted May 17, 2013 12:48 PM

        I opened a case, will keep you posted.



      • 8.  RE: Trying to run Network Threat report, and it times out

        Posted May 22, 2013 07:31 AM

        Hi RSASKA!

        I faced with same problem. How are your case?



      • 9.  RE: Trying to run Network Threat report, and it times out
        Best Answer

        Posted May 22, 2013 09:56 AM

        I opened case with Symantec.

         

        So far, they asked me to create a new Admin account, and then try to run the report. It works well in the new Admin, but not my original account.

        Then Symantec asked me to run following query in Database

        Update compliance_report set sortorder = 'EVENT_TIME', sortdir = 'desc' where user_id = 'your-account's-unique-ID' and deleted = 0 and filtername = 'Default' and compliance_type = 5;

         

        Now in my original user Account I can run Network Threat Report > Attacks, but not Network Threat Report > Traffic



      • 10.  RE: Trying to run Network Threat report, and it times out

        Posted May 23, 2013 02:44 AM

        Well, report works with new account. But is it possible to remove built-in original account then?



      • 11.  RE: Trying to run Network Threat report, and it times out
        Best Answer

        Posted May 28, 2013 10:17 AM

        Now, in my original user Account I can run Network Threat Report > Traffic because I ran the following query in the database:

         

        Update firewall_report set sortorder = 'EVENT_TIME' where user_id = 'your-account's-unique-ID' and deleted = 0 and filtername = 'Default' and firewalltype = 1;



      • 12.  RE: Trying to run Network Threat report, and it times out

        Posted May 29, 2013 03:08 AM

        Thanks RSASKA! I appreciate your help!

        I have an error with this query: "Error at line 1 Missing closing quote" but i don't know what quote it means.



      • 13.  RE: Trying to run Network Threat report, and it times out

        Posted May 29, 2013 11:55 AM

        What query do you have error with? Is this an SQL query? Please copy and paste.



      • 14.  RE: Trying to run Network Threat report, and it times out

        Posted May 30, 2013 08:21 AM

        With query that you wrote earlier:

        Update firewall_report set sortorder = 'EVENT_TIME' where user_id = 'your-account's-unique-ID' and deleted = 0 and filtername = 'Default' and firewalltype = 1;



      • 15.  RE: Trying to run Network Threat report, and it times out

        Posted May 30, 2013 10:53 AM

        I should have been more clear:

        You need to run a query to find your unique User ID

        Select * from firewall_report
        where user_id = (select user_id from adminuser where user_name = 'roman.levkin's login ID')
        and deleted = 0;

        The result will give you a table. Copy the value for USER_ID, which is your account's unique ALPHANUMERIC ID

        Now, you run the query

        Update FIREWALL_REPORT
        set sortorder = 'EVENT_TIME'
        where user_id = 'your-account's-unique-ALPHANUMERIC-ID'
        and deleted = 0 and
        filtername = 'Default'
        and firewalltype = 1;
         

        Make sure there are no spaces when you use single quotes around the user ID.

        Also, it is best practice to append the schema name to the name of table. In our environment, our schema is called dbo, so it is better to run

        Select * from dbo.FIREWALL_REPORT ...

        Update dbo.FIREWALL_REPORT ....

        Let me know if this works



      • 16.  RE: Trying to run Network Threat report, and it times out

        Posted Jun 04, 2013 08:24 AM

        Hi! I have such result of suggested query

        report.png



      • 17.  RE: Trying to run Network Threat report, and it times out

        Posted Jun 04, 2013 10:32 AM

        Roman,

        First time when I ran the query, it said 1 row updated and I was able to open Network Threat > Traffic logs.

        Now, when I run query it also tells me 0 rows updated (I'm running MS SQL Server Management Studion 2008), because the information has already been updated.

        It may be the same case for you. Can you open Network Threat > traffic logs now?

        If you are unable to open these logs,try this with another user_id, and run the query again, and post the result.