Cisco 2801 Question

crossrider

Reputable
Nov 24, 2014
2
0
4,510
I'm trying to open a port in a Cisco 2801, the port 3001 to give internet access for a cisco switch which IP is <removed>

I want to provide internet access to the <removed> via the 3001 port from the cisco 2801



This is what i tried so far:



ip nat inside source static tcp <removed>



access-list 7 permit <removed>

I can provide the whole configuration for the Router and switch if that helps

Thanks in Advance, much appreciate it

IP information removed by moderator. - G
 
Problem is when the IP information is removed especially when the private addresses as well as public addresses are removed it makes the question impossible to even answer. From the way this nat statement is normally done I am going to bet the addresses removed were private addresses which pose no risk at all.

You really only need the IP NAT statement no access list is required. This is the common format of this command and to the monitorator 10. address are not a issue so do not remove it. This is only a guess since it is hard to even answer when data that is likely not a security risk is removed.

ip nat inside source static tcp 10.1.1.2 3001 interface eth 0/0 3001
 



Yea that's the command i was getting ready to use, but needed a confirmation i guess, and thanks for the advice in the no need of the access list.