thsukudu

Comments

  • well, that pretty much proves that it's an API issue and it seems like my best option is to upgrade. But that is months away from now and this project will be over already. Also, looks like the update function of the CRUD doesn't actually work either. I think what I'm going to end up doing is making a powershell script…
  • nah i'm afraid that doesn't work either.
  • just for the sake of completion, can you run using the CRUD operations --- new-swisobject -swis $swis -entitytype 'IPAM.Subnet' -properties @{Address='10.10.10.0'; CIDR=24; Comments="test"; DisableNeighborScanning=$true} We are looking to upgrading the solarwinds suite however we need to upgrade to windows 2016…
  • If you do "^line" that will cover vty, con, aux etc. Also if you want to do it your way remember each | would be different "line vty|line con" etc But to be more concise I'd use positive look ahead regex ^line (?=vty|con)
  • look into policy based routing, you can add / remove things from the routing table
  • evilgoat I'm trying to make sure ACL's on the device match what we have on file. "Remarks" aren't required to be put on the ACL's so my regex is attempting to skip them, but it's not. the regex above doesn't work. and if I split the regex up in solarwinds (access-list 1 permit 1.1.1.1 AND access-list 1 permit 2.2.2.0…
  • your regex works except if the string is "administrator" or "adminasldfjaldf" remember to mark your word boundaries.
  • > If you want to allow your users to do something that their current Orion permissions wouldn't allow them to do, you have a couple of options. The simplest thing would be to give the users additional permissions In your screen shot they are 'administrators' under IP ADDRESS MANAGER SETTINGS . The cannot add subnets via my…
  • rschroeder​ this is not a scale-able solution. This should already be in solarwinds (if i can determine it's not running an ios to upgrade it, it definitely can make a report!) I have a network with at least 50-75 different models of devices on it. Manually creating a rule for each device each time ios upgrade comes out…
  • sorry i don't have screenshots to post but looking at the context of your post you want to make sure certain commands are under your line vty 0 4 etc. the thing is you either need 1 rule to look for everything line aux o access-class 22 in exec-timeout 60 0 line vty 0 4 access-class 22 in exec-timeout 60 0 or, a better…