Comments
-
Agreed. I got it right basically because it wasn't in the whitepaper...like not referenced in that context at all...
-
Always lookin' on the bright side! On another note, your profile pic is awesome.
-
It's after the second. Literally. Not being snide, just don't get hung up on the naming.
-
I think folks are confusing meat-space agents with software agents.
-
Question: SolarWinds Service Desk drives more effective ticket routing by combining our automations engine with artificial intelligence technology to guide users to properly categorize their tickets. --The users are categorizing the tickets Hint: Automations make it easier to get tickets to the right teams, quickly, so…
-
Yeah, it's easy to assume the correct answer, but honestly if you look at the question and follow the hint you technically get the incorrect answer.
-
Also, it's just free internet points so...
-
While I still think it's maybe poorly worded, it's not always true that separating data is inherently more secure. Security comes from access.
-
There was a fair bit of controversy with the questions that week, so I assume that has something to do with it.
-
Same. Got my points for today but nothing for yesterday still...
-
It's pulling NPM node data so it would only work if the interfaces are in NPM. I'm not confident you can report on utilization without the interfaces added. My reports do require they be added. I've added all interfaces to NPM and changed access port and ports we don't care that much about to show as unplugged instead of…
-
This sounds great, I'll give it a shot. Thanks much for the info.
-
Yeah, I've setup a NetPath service to an temp sensor in the IDF, I may check into the PC idea, that sounds pretty good too. Thanks much!
-
Figured it out. It's kind of convoluted (to me) but it works. I declare it as a string variable and perform + joins on it: string @FTPvar = 'file copy ' + @variablename + ' ftp://ftp_user' + ':' + @FTPpassword + '@' + '10.1.1.1' + '/' + @variablename Then just call @FTPvar in the CLI script body. Edit: Have to add spaces…
-
There's a known issue where Ubiquiti devices are reporting their sysobjectID as 10002 (FrogFoot). Ubiquiti Networks devices show up as Frogfoot Networks devices - SolarWinds Worldwide, LLC. Help and Support The proper OID for Ubiquiti is 1.3.6.1.4.1.41112. You may be able to create a Universal Device Poller to get the…
-
I got it figured out...or a work around...either way it works. I added the string to a variable. Learned this working on another issue. | show arp | display xml | no-more | tee @ARPfile Becomes string @ARPfile = 'show arp | display xml | no-more | tee ' + @IDF + '-arp.xml' I no longer declare the @ARPfile at the start of…