08-24-2018 11:56 AM - edited 03-05-2019 10:52 AM
I need to create a port forward for this 1025 port that i have just opened up.
Use this available public IP address 216.67.XXX.XX and point it to the 192.168.40.15 address.
What will be the commands for this?
Thank you
08-24-2018 12:24 PM
Hello,
port forwarding as in NAT ?
ip nat inside source static tcp 192.168.40.15 1025 216.67.XXX.XX 1025
ip nat outside source static tcp 192.168.40.15 1025 216.67.XXX.XX 1025
08-24-2018 12:47 PM
Yes In NAT for both TCP and UDP.
08-24-2018 12:51 PM - edited 08-24-2018 12:54 PM
Hello,
the above applies. For UDP, just replace tcp with udp:
ip nat inside source static tcp 192.168.40.15 1025 216.67.XXX.XX 1025
ip nat outside source static tcp 192.168.40.15 1025 216.67.XXX.XX 1025
ip nat inside source static udp 192.168.40.15 1025 216.67.XXX.XX 1025
ip nat outside source static udp 192.168.40.15 1025 216.67.XXX.XX 1025
08-24-2018 12:54 PM
08-24-2018 12:55 PM
Hello,
for NAT, you need to add several commands to your configuration. Post your full config....
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