Active IQ Unified Manager Discussions

Couple of issues re: vfiler creation

JCASON
2,923 Views

The first thing I'm trying to knock out with WFA is the process of deploying a vfiler, end-to-end. 

There is an existing "create and configure vfiler" command that I am leveraging, but it doesn't do some specific things that we need.  So I have created a custom workflow, so far using standard commands.

Here are my current issues that I'm hoping to resolve without creating a custom command (I don't mind it but hope I'm missing some built in functionality):

1. Part of the requirement for vfiler failover is that the ipspace exists on both sides of an ha pair.  I can create the vlan interface we use on each side no problem.  The create/configure vfiler command creates the ipspace on the target array, but does nothing for the partner.  I can't seem to find any existing command just for creating this and adding the vlan to it.  Does one exist or do I need to create a command for it?

2. While I can create the vlan interfaces on each side, it doesn't create them like I need (specifically it does not configure the 'partner' directive).  I don't see any command that allows for configuration of this either.  Same question as before, does a command exist for configuration of an existing interface with respect to setting the partner up?  I see there is something to configure an IP address on an interface which gives several options, but no partner option that I see.

3.  Finally, in general is there a way to add and delete information from the /etc/rc file in workflows (or /etc/hosts, /etc/netgroup)?  And how might I do that? 

3 REPLIES 3

bdave
2,923 Views

Suggest checking out the commands and workflows in the VMware pirate packs posted to the community.  Not sure if it's in there, but that's where I'd start.

Regarding #3, I just published an example of removing blank lines from /etc/hosts.  You might check it out for the PowerShell commands to read and write files from and to the controllers. 

https://communities.netapp.com/docs/DOC-23962

Hope this helps.

Cheers,

Dave

goodrum
2,923 Views

Dave is correct.  The Pirate Pack for VMware - 7Mode v2.1 contains a command for IPspace creation outside of the create and configure command.

https://communities.netapp.com/docs/DOC-22069

Regarding the Partner interface.  There is no existing command for this.  The PowerShell cmdlet that you would need to use is Set-NaNetInterface.  One option would be to clone the Add VLAN command and add the option at the end.  I haven't tested it but it would look like:

--------------------------------------------

param (

  [parameter(Mandatory=$true, HelpMessage="Array IP address")]

  [string]$Array,

  [parameter(Mandatory=$true, HelpMessage="Interface to add a VLAN to")]

  [string]$Interface,

  [parameter(Mandatory=$false, HelpMessage="Interface to add as Failover Partner")]

  [string]$PartnerInterface,

  [parameter(Mandatory=$true, HelpMessage="Vlan ID")]

  [ValidateRange(1,4094)]

  [int]$VlanID

)

# connect to controller

Connect-WFAController -Array $Array   

Get-WFALogger -Info -message $("Adding VLAN : " + $VlanID + " to " + $Interface )

Add-NaNetVlan -Interface $Interface -Vlans $VlanID

if($PartnerInterface)

{

     Get-WFALogger -Info -message $("Adding Inteface : " $PartnerInterface + " as the partner to " + $Interface + "-" + $VlanID)

     Set-NaNetInterface $Interface -Partner $PartnerInterface

}

--------------------------------------------

I have literally just scratched this command out based on the VLAN command but it should get you close enough. 

Jeremy Goodrum, NetApp

The Pirate

Twitter: @virtpirate

Blog: www.virtpirate.com

TIMHOIBERG
2,923 Views

We have a custom created command that checks to see if a given ipspace and vlan have already been created on the filer, and if not creates them. To get this to run on the partner head I usually just add in another instance of the command to the workflow and specify it to run on the partner head (I usually use an FC to find an array object, then use the partner.ip attribute to run the command on the partner head). It may take a little modification to use in your environment since our implementation of IP is a little unique. Let me know if this helps with any of your 3 points.

Regards,

Tim

Public