Problem:
Trace the NAT translation process when a private host (192.168.1.100) accesses a public server (203.0.113.1).
Solution:
Original Packet: Src=192.168.1.100:12345, Dst=203.0.113.1:80
After NAT: Src=203.0.113.10:12345, Dst=203.0.113.1:80
Return Packet: Src=203.0.113.1:80, Dst=203.0.113.10:12345
After Reverse NAT: Src=203.0.113.1:80, Dst=192.168.1.100:12345
Result:
The private host can communicate with the public server through NAT translation, with the NAT device maintaining a translation table entry for the session.