Re: Regex and Fortinets
That's interesting that it worked for you - that means it's most definitely not something in between the individual tokens (set, admintimeout, and 480) but something between the ^ and the 'set'....
View ArticleRe: Regex for VTY Transport Compliance
I figured out part of it finally... The laziness had to go somewhere else... (.*\n)* becomes(.*\n)*?Now I'm left with this: While this now stops the search at the first "transport input ssh" like I...
View ArticleRe: Regex for VTY Transport Compliance
You could use positive lookahead assertion, like this: line vty 0 \d(.*\n)*? transport input ssh(?=\nline) That would stop the regex, provided the next thing to follow were something other than a...
View ArticleRe: Regex for VTY Transport Compliance
Hello, It depends what you want to check.Always use blocks: Against: line vty 0 4 session-timeout 10 exec-timeout 10 1 transport input ssh line vty 5 15 session-timeout 10 exec-timeout 10 1...
View ArticleJust upgraded to 7.3.2 and all NCM email notifications broke Help!
Actually, we first integrated NCM 7.2.2 (formerly standalone) with our NPM 11.0.1 system (3 pollers) and then immediately upgraded to NCM 7.3.2. The upgrade went fine. However, we've discovered all...
View ArticlePolicies broke created with Policy Reporter since NCM/NPM integration
Just integrated NCM 7.2.2 (formerly standalone) with NPM 11.0.1 and have discovered that all the policies which were created with NCM Policy Reported are broke because the NCM Policy Reporter selection...
View ArticleSwitch’s name was not discover when integrated on the ncm
Hi all, The switch’s name was not discovered when we integrated them on the ncm platform due to a bad snmp community name. The hostname isn't show on the switch web interface. Some of them have the...
View ArticleRe: NCM - Need to Develop a widget/button to kick off series of scripts on...
Did you ever get this working? I think a script would be a better route to integrate with Orion.
View ArticleRe: Regex for VTY Transport Compliance
Logically I think that sounds right, but it appears to be stopping the regex from finding anything whatsoever unless "line" is actually the first thing on the next line. In that case, it does not...
View ArticleRe: Regex for VTY Transport Compliance
Wow... I completely and totally missed that entire "Search Config Block" setting in there. Now I want to see what regex that gets turned into on the back end . I bet it looks a lot like the workaround...
View ArticleRe: Just upgraded to 7.3.2 and all NCM email notifications broke Help!
Have you tested SMTP connectivity from the NCM server (assume you've integrated it with your Primary Poller?) and the mail relay, and confirmed that the relay is accepting the connection? Note: By...
View ArticleRe: Cannot observe ANY EoS data for any device.
Try changing the filter to 'Machine Type'. This will show you all the devices, one type at a time. Select one of the device types, then check the box to the left of the 'Name' heading. You should then...
View ArticleRe: Cannot observe ANY EoS data for any device.
The "Name" heading was not a selectable option regardless of the filter. Nor was the assign dates or refresh available. Ironically enough, Jiri was right, it was a permissions issue, and I needed to...
View ArticleRe: Cannot observe ANY EoS data for any device.
Glad to hear you resolved the problem! Jiri
View ArticleReport of what nodes are in NCM??
I'm trying to find just a simple report of what nodes are in NCM. Anybody know where I can find this?
View ArticleRe: Report of what nodes are in NCM??
Configs -> Reports -> Node Details -> All Nodes Jiri
View ArticleRe: Cisco WLC 2504 backup
I am using SSH for connection and I can connect to it with SSH. there is no firewall or ACL setup for connections or port.
View ArticleRe: Regex and Fortinets
"^.?*set admintimout 480"? Trying to interpret your regex and its failing me a bit. ^ - anchors it to the beginning of the line.. - matches >any< character? - makes the preceding token optional,...
View Article