Hello, ActiveIQ ask for enable auditing : Enable auditing on the storage VM using the ONTAP command 'vserver audit enable -vserver vserver_name'. how i can do that with ONTAP web ? it is necessary dedicate volume to store audit logs or just enable ? I am on ontap 9.15 thanks a lot
... View more
I have a question. I have a Netapp NAJ-1502 storage device and need a switch to use it. what recommendations or combabilities can I use with this device and also the cables to connect as well thanks
... View more
Hi Everyone..
Actually we have FAS2240 with Data Ontap 8.1.4P1 7-Mode and Filer-A had failed. So we have replaced with New one.
But unfortunately forgot to swap Flash Card from failed filer to new filer.
In result the New Filer is having Ontap 8.2P3 7-Mode has been configured that newer version then we have in out system.
So system is running but Takeover feature has been disabled due to ontap mismatch.
strga> cf status
strgb is up, takeover disabled because of reason (version mismatch)
strga has disabled takeover by strgb (version mismatch)
NVRAM TOC: Local 29 Partner 23
WAFL FSInfo: Local 23589 Partner 22331
WAFL log: Local 396 Partner 334
RAID: Local 12 Partner 11
RAID NVRAM: Local 42 Partner 33
VIA Interconnect is up (link up).
So now we have two options here, one need to upgrade Filer-B to 8.2P3 or downgrade Filer-A to 8.1.4P1.
But to perform both we need those Ontap Firmware. we have tried to search Netapp Support but unable to find any version blow 8.5
So I need help here if someone pls share link to download above version will be really helpful to me
Thank You
... View more
Hello everyone, I have seen many articles in the forum about Fas2552 7-mode upgrade to c-mode. But many kilobytes seem to be inaccessible. It appears that Fas2552 cannot be upgraded directly from 7-MODE to C-mode. There seems to be only one way to reformat. Do you have the corresponding documents? And right now I have two FAS2552 Snapmirrors. I also need to consider the 7-mode and c-mode license issues
... View more
I am recently learning powershell scripting, how can I write scripts to successfully access adv permissions, I tried to pass y after set adv, but it didn't work, I don't know how to solve this problem, hope someone can help modify my script my script # Set connection information $ONTAPHost = Read-Host "Enter the IP address of the ONTAP cluster" $User = Read-Host "Enter username" $Password = Read-Host "Enter password" $OutputFile = "commands_output.txt" # Output file path # Import Posh-SSH module from removable drive, need to change the drive letter Import-Module F:\Posh-SSH # Create an SSH session and pass credentials $securePassword = $Password | ConvertTo-SecureString -AsPlainText -Force $credential = New-Object System.Management.Automation.PSCredential($User, $securePassword) # Define command array $commands = @( "cluster show", "set adv", "system node image show" ) # Try to connect to the ONTAP cluster try { # Creating an SSH Session $session = New-SSHSession -ComputerName $ONTAPHost -Credential $credential -ErrorAction Stop Write-Host "SSH session established successfully." # If the file already exists, clear the file contents if (Test-Path $OutputFile) { Clear-Content -Path $OutputFile } # Loop through the array of commands and execute them in turn foreach ($command in $commands) { Write-Host "`nExecuting command: $command" try { # Execute the current command and get the result $result = Invoke-SSHCommand -SessionId $session.SessionId -Command $command -ErrorAction Stop # Record the command execution to a file Add-Content -Path $OutputFile -Value "`n::> $command" # Output the result of the command if ($result.Output) { $result.Output -split "`n" | ForEach-Object { Add-Content -Path $OutputFile -Value $_ } } else { Add-Content -Path $OutputFile -Value "No output received for '$command'." } } catch { Write-Host "Error executing command: $command" Add-Content -Path $OutputFile -Value "Error executing command: $command - $_" } } } catch { Write-Host "Failed to establish SSH session or execute command: $_" Add-Content -Path $OutputFile -Value "Failed to establish SSH session or execute command: $_" exit } finally { # Make sure to close the SSH session at the end of the script if ($session) { Remove-SSHSession -SessionId $session.SessionId Write-Host "SSH session closed." } } outputfile ::> cluster show Last login time: 11/25/2024 16:21:20 Node Health Eligibility --------------------- ------- ------------ FAS2720-01 true true FAS2720-02 true true 2 entries were displayed. ::> set adv Last login time: 11/25/2024 16:22:14 ::> system node image show Last login time: 11/25/2024 16:22:14 Error: "image" is not a recognized command
... View more