@@ -31,30 +31,30 @@ function Add-NSIPResource {
31
31
The NetScaler session object.
32
32
33
33
. PARAMETER IPAddress
34
- IPv4 address to create on the NetScaler appliance.
34
+ IPv4 address to create on the NetScaler appliance.
35
35
36
36
Note: Cannot be changed after the IP address is created
37
37
38
38
. PARAMETER SubnetMask
39
39
Subnet mask associated with the IP address.
40
40
41
41
. PARAMETER Type
42
- Type of the IP address to create on the NetScaler appliance. Cannot be changed after the IP address is created.
43
-
44
- The following are the different types of NetScaler owned IP addresses:
42
+ Type of the IP address to create on the NetScaler appliance. Cannot be changed after the IP address is created.
43
+
44
+ The following are the different types of NetScaler owned IP addresses:
45
45
46
46
* A Subnet IP (SNIP) address is used by the NetScaler ADC to communicate with the servers.
47
47
The NetScaler also uses the subnet IP address when generating its own packets, such as packets related to dynamic routing
48
- protocols, or to send monitor probes to check the health of the servers.
48
+ protocols, or to send monitor probes to check the health of the servers.
49
49
50
50
* A Virtual IP (VIP) address is the IP address associated with a virtual server. It is the IP address to which clients connect.
51
- An appliance managing a wide range of traffic may have many VIPs configured. Some of the attributes of the VIP address are
52
- customized to meet the requirements of the virtual server.
53
-
51
+ An appliance managing a wide range of traffic may have many VIPs configured. Some of the attributes of the VIP address are
52
+ customized to meet the requirements of the virtual server.
53
+
54
54
* A GSLB site IP (GSLBIP) address is associated with a GSLB site. It is not mandatory to specify a GSLBIP address when you
55
- initially configure the NetScaler appliance. A GSLBIP address is used only when you create a GSLB site.
56
-
57
- * A Cluster IP (CLIP) address is the management address of the cluster. All cluster configurations must be performed by
55
+ initially configure the NetScaler appliance. A GSLBIP address is used only when you create a GSLB site.
56
+
57
+ * A Cluster IP (CLIP) address is the management address of the cluster. All cluster configurations must be performed by
58
58
accessing the cluster through this IP address.
59
59
60
60
Default value: SNIP
@@ -88,7 +88,7 @@ function Add-NSIPResource {
88
88
[string ]$Type = ' SNIP' ,
89
89
90
90
[switch ]$VServer ,
91
-
91
+
92
92
[switch ]$MgmtAccess
93
93
)
94
94
@@ -107,7 +107,7 @@ function Add-NSIPResource {
107
107
vserver = if ($PSBoundParameters.ContainsKey (' VServer' )) { ' ENABLED' } else { ' DISABLED' }
108
108
mgmtaccess = if ($PSBoundParameters.ContainsKey (' MgmtAccess' )) { ' ENABLED' } else { ' DISABLED' }
109
109
}
110
- $response = _InvokeNSRestApi - Session $Session - Method POST - Type nsip - Payload $params - Action add
110
+ _InvokeNSRestApi - Session $Session - Method POST - Type nsip - Payload $params - Action add > Out-Null
111
111
} catch {
112
112
throw $_
113
113
}
0 commit comments