Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

Possible Duplicate:
What is port forwarding and what is it used for?

What is the difference between NAT and Port Forwarding? Are they two different names for the same thing? Could you provide me with short practical example, please?

share|improve this question
1  

marked as duplicate by techie007, Xavierjazz, Oliver Salzburg, slhck, studiohack Jun 4 '12 at 20:20

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 2 down vote accepted

NAT and Port Forwarding are different, but often used in conjunction with each other.

NAT is Network Address Translation. It translates traffic from one IP to another. An example: NATing your WAN IP 1.2.3.4 to your internal webserver 192.168.0.1.

Port forwarding (sometimes called PAT - Port Address Translation) is similar, but it functions on the port level. You can forward port 80 from your WAN IP to your internal webserver, for example. You can also forward to a different port - i.e. port 8080 on the WAN is forwarded to port 80 on your internal web server.

share|improve this answer
+1 and thank you for very good explanation. i will mark this answer as the "accepted answer". – Bunkai.Satori May 30 '12 at 18:25

Not the answer you're looking for? Browse other questions tagged or ask your own question.