Hi Guys,
I got from my ISP a 8 IPs block assigned and i want to use them for different PCs and Servers, right now i have this NAT configuration:
to use all ips do i have to change this for:
Is this correct or do i have to do more changes?.
Thanks in advance.
I got from my ISP a 8 IPs block assigned and i want to use them for different PCs and Servers, right now i have this NAT configuration:
Code:
ip nat inside source list NAT interface Dialer0 overload
ip access-list standard NAT
permit 192.168.1.0 0.0.0.255
permit 192.168.2.0 0.0.0.255
permit 192.168.3.0 0.0.0.255
permit 192.168.4.0 0.0.0.255
permit 192.168.5.0 0.0.0.255
to use all ips do i have to change this for:
Code:
ip nat pool IP-BLOCK 206.xx.xx.224 206.xx.xx.231 netmask 255.255.255.248
ip nat inside source list NAT pool IP-BLOCK overload
ip access-list standard NAT
permit 192.168.1.0 0.0.0.255
permit 192.168.2.0 0.0.0.255
permit 192.168.3.0 0.0.0.255
permit 192.168.4.0 0.0.0.255
permit 192.168.5.0 0.0.0.255
Is this correct or do i have to do more changes?.
Thanks in advance.