Defining address spaces for NAT gateways
To specify the IP address of your NAT gateways and the
address space identifier you want to use for each associated NAT domain,
edit DiscoConfig.cfg to create or amend an insert
into translations.NATAddressSpaceIds.
About this task
Procedure
- The IP address must be the public IP address that is accessible from the management server.
- The address space field can be any descriptive string, but avoid special characters such as quotes. Use the standard rules for DNS names for the address space because the address space might make up part of the name of these devices.
Results
The following example insert configures the discovery system for two NAT gateways.
insert into translations.NATAddressSpaceIds
(
m_NATGatewayIP,
m_AddressSpaceId
)
values
(
'172.16.1.112',
'NATDomain1'
);
insert into translations.NATAddressSpaceIds
(
m_NATGatewayIP,
m_AddressSpaceId
)
values
(
'172.16.1.104',
'NATDomain2'
);