Comments
-
I've read it three times now and I don't see an answer to the question their asking. I can't really complain though, everyone here always does a great job, so I won't raise a stink.
-
Thanks for the info!
-
Kinda bummed about missing today's question. It wasn't really clear. Answers were 10 min, 1 hour, 4 hours, 24 hours. The only thing I could find related to time was: "Consultant- and services-free deployment has you up and running in as little as an hour" "...and in just a few minutes NetPath will map applications and…
-
If I made a mistake and then cleared my cookies and re-answered the question correctly... am I still entered for the drawing at the end?
-
Good Job on the email video today... I chuckled.
-
I'm not getting my points for correct questions answered.
-
Thanks rharland. The option to monitor CBQoS were in the link beside this option:
-
Ok, your first request was a little different. I just tested the below script on my database and got a good result. FYI... you do not need to SELECT nodeid, just include it in your join statement. SELECT ISP_Provider, COUNT (CASE Status WHEN '1' THEN 1 else NULL end) AS UP, COUNT (CASE Status WHEN '2' THEN 1 else NULL end)…
-
I don't get on here often enough to care about points, thanks for the link though.
-
Yes, I have a report for admin up, Oper Up, Admin down, Oper Down... but it didn't prove useful for what I needed.
-
Have you configured any SQL for this and/or do you have any examples of how to make it work?
-
Ah geez... ok thanks for the info.
-
Thanks Craig. I actually just figured it out about 10 minutes before you replied. I hadn't set the destination to Orion... I figured since NTM could see the device, it was config'd correctly on the router. Edit: For anyone that's trying to configure netflow on Cisco devices, this link is helpful: Cisco IOS NetFlow Command…
-
Thanks Craig, Any idea where to find a guide to configuring NTA to monitor and display this info? I've enabled Netflow on one of the routers I'd like to test, but don't see any output of QOS info in NTA. Thanks again.
-
Sorry, just saw your custom property. Try this and fill in your custom property where applicable: SELECT {Your Custom_Property}, COUNT (CASE Status WHEN '1' THEN 1 else NULL end) AS UP, COUNT (CASE Status WHEN '2' THEN 1 else NULL end) AS DOWN FROM ORION.Nodes JOIN {Custom Property Table} ON nodes.nodeid =…
-
I think this should work for you: SELECT COUNT (CASE Status WHEN '1' THEN 1 else NULL end) AS UP, COUNT (CASE Status WHEN '2' THEN 1 else NULL end) AS DOWN, COUNT (Status) as Total FROM ORION.Nodes
-
I also get the error that Netflow hasn't been configured for this device when clicking on it in NTA. I enabled netflow on the device's interface, but no luck.
-
That's what I wanted to know, if the authentication was encrypted. I wasn't thinking clearly about NCM... I use ssh, so it's encrypted. Thanks for the answer!