If I assign multiple IPs on an interface like this:
interface FastEthernet0
description Connected to Internet via Cable Modem (Charter)
ip address xxx.xxx.xxx.143 255.255.255.0 secondary
ip address xxx.xxx.xxx.144 255.255.255.0 secondary
ip address xxx.xxx.xxx.145 255.255.255.0 secondary
ip address xxx.xxx.xxx.146 255.255.255.0 secondary
ip address xxx.xxx.xxx.147 255.255.255.0 secondary
ip address xxx.xxx.xxx.7 255.255.255.0
And I use this NAT statement:
ip nat inside source list 1 interface FastEthernet0 overload
Will I ever PAT on any of the secondary IPs?
I will be putting static nats on each of the other IP addresses.
interface FastEthernet0
description Connected to Internet via Cable Modem (Charter)
ip address xxx.xxx.xxx.143 255.255.255.0 secondary
ip address xxx.xxx.xxx.144 255.255.255.0 secondary
ip address xxx.xxx.xxx.145 255.255.255.0 secondary
ip address xxx.xxx.xxx.146 255.255.255.0 secondary
ip address xxx.xxx.xxx.147 255.255.255.0 secondary
ip address xxx.xxx.xxx.7 255.255.255.0
And I use this NAT statement:
ip nat inside source list 1 interface FastEthernet0 overload
Will I ever PAT on any of the secondary IPs?
I will be putting static nats on each of the other IP addresses.