< Back

Remove-NsxEdgeNatRule

Sat Jan 18, 2020 9:21 pm

NAME Remove-NsxEdgeNatRule



SYNOPSIS

Removes a NAT Rule from the specified ESGs NAT configuration.





SYNTAX

Remove-NsxEdgeNatRule [-NatRule] <XmlElement> [-Confirm] [[-Connection] <PSObject>] [<CommonParameters>]





DESCRIPTION

An NSX Edge Service Gateway provides all NSX Edge services such as firewall,

NAT, DHCP, VPN, load balancing, and high availability. Each NSX Edge virtual

appliance can have a total of ten uplink and internal network interfaces and

up to 200 subinterfaces. Multiple external IP addresses can be configured

for load balancer, site???????????????to???????????????site VPN, and NAT services.



NSX Edge provides network address translation (NAT) service to protect the

IP addresses of internal (private) networks from the public network.



The Remove-NsxEdgeNatRule cmdlet removes a specific NAT rule from the NAT

configuration of the specified Edge Services Gateway.



Rules to be removed can be constructed via a PoSH pipline filter outputing

rule objects as produced by Get-NsxEdgeNatRule and passing them on the

pipeline to Remove-NsxEdgeNatRule.





PARAMETERS

-NatRule <XmlElement>



Required? true

Position? 1

Default value

Accept pipeline input? true (ByValue)

Accept wildcard characters? false



-Confirm [<SwitchParameter>]

Prompt for confirmation. Specify as -confirm:$false to disable confirmation prompt



Required? false

Position? named

Default value True

Accept pipeline input? false

Accept wildcard characters? false



-Connection <PSObject>

PowerNSX Connection object



Required? false

Position? 2

Default value $defaultNSXConnection

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS



-------------------------- EXAMPLE 1 --------------------------



PS C:\\>Get-NsxEdge Edge01 | Get-NsxEdgeNatRule | Remove-NsxEdgenatRule



Remove all NAT rule with confirmation









-------------------------- EXAMPLE 2 --------------------------



PS C:\\>Get-NsxEdge Edge01 | Get-NsxEdgeNatRule | Remove-NsxEdgenatRule -confirm:$false



Remove all NAT rule without confirmation









-------------------------- EXAMPLE 3 --------------------------



PS C:\\>$rule = get-NsxEdge Edge01 | get-NsxEdgeNat | get-NsxEdgeNatRule -RuleId 196614



PS C:\\>$rule | Remove-NsxEdgeNatRule -confirm:$false



Remove the NAT rule 196614 without confirmation











RELATED LINKS