03-28-2016 11:31 PM - edited 03-05-2019 03:40 AM
How can doing NAT from outside (internet) to inside LAN Servers using one public IP??????
Should I using route map ????
Solved! Go to Solution.
03-29-2016 06:08 AM
Lets say 99.3.81.66 is your public IP and ISP is on INT G0/0
ip nat inside source list 1 interface GigabitEthernet0/0 overload
ip nat inside source static tcp 10.3.81.6 443 993.81.66 443 extendable
ip nat inside source static tcp 10.3.81.61 80 99.3.81.66 80 extendable
access-list 1 permit 10.3.81.0 0.0.0.255
Int G0/0
ip nat outside
int g0/2
ip nat inside
03-29-2016 12:19 AM
what is device are you using ?
03-29-2016 02:57 AM
1941 series and no firewall connected.
03-31-2016 04:00 AM
Are you something configure ? Please put in command line "show ip nat statistics" and show your configuration.
03-29-2016 12:50 AM
Contact your network engineer they will do the needful..
also provide him (list H323 port for VC )for opening at firewall end.
03-29-2016 02:58 AM
For your information no firewall used in this topology and thank you for helping.
03-29-2016 05:16 AM
you can use the nat in tcp/udp port ej:
serv1:80
serv2:21
publicip:80 ---> serv1:80
publicip:21 ---> serv2:21
03-29-2016 06:08 AM
Lets say 99.3.81.66 is your public IP and ISP is on INT G0/0
ip nat inside source list 1 interface GigabitEthernet0/0 overload
ip nat inside source static tcp 10.3.81.6 443 993.81.66 443 extendable
ip nat inside source static tcp 10.3.81.61 80 99.3.81.66 80 extendable
access-list 1 permit 10.3.81.0 0.0.0.255
Int G0/0
ip nat outside
int g0/2
ip nat inside
03-31-2016 06:42 AM
NAT have three types:
static NAT: when you assign one public IP to one private IP.
Dynamic NAT: when you have a pool of public IPs that is mapped to a pool of private IPs.
overload NAT: when you have single public IP and a pool of private IPs, and it will use private IP user ports or process ID to built NAT table...
Use Nat overload method
04-27-2016 06:36 AM
Thank you very much and for all people who tried to help me to solve this problem.....
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide