<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Change the port number going into ASA arriving on outside interf in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774276#M495122</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It adds the netmask it self, if you add the statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) tcp x.x.x.x 443 x.x.x.x 8443&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;show run static&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You would see the firewall would add the netmask itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Glad I could help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Oct 2011 11:36:04 GMT</pubDate>
    <dc:creator>varrao</dc:creator>
    <dc:date>2011-10-21T11:36:04Z</dc:date>
    <item>
      <title>Change the port number going into ASA arriving on outside interface</title>
      <link>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774265#M495111</link>
      <description>&lt;P&gt;I need to change all traffic coming from the outside inteface destined for IP x.x.x.x on port 443, so that it will be sent to the server x.x.x.x on the inside on port 8443 instead. This will also then need to be sent back out of the firewall using port 443 again. I am unsure of the command to use to do this. I know that if I were attempting to do the same from the inside out I could use a static like the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) tcp x.x.x.x 8443 x.x.x.x 443 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But doing it from the outside is what I am not understanding as I will not need to NAT the address as the traffic is already allowed to that server on that port. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 21:40:52 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774265#M495111</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2019-03-11T21:40:52Z</dc:date>
    </item>
    <item>
      <title>Change the port number going into ASA arriving on outside interf</title>
      <link>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774266#M495112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You would need this static statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) tcp &lt;PUBLIC ip=""&gt; 443 &lt;PRIVATE ip=""&gt; 8443 netmask 255.255.255.255&lt;/PRIVATE&gt;&lt;/PUBLIC&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2011 09:51:32 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774266#M495112</guid>
      <dc:creator>varrao</dc:creator>
      <dc:date>2011-10-21T09:51:32Z</dc:date>
    </item>
    <item>
      <title>Change the port number going into ASA arriving on outside interf</title>
      <link>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774267#M495113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Varun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I said, I don't know the public IP as this is allowed from anyone in the world. It is a web service and should be open to anyone. I also do not want to change the IP, the range I spoke of initialy, x.x.x.x is a publicly routable IP address.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So basically I want the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Anyone on the internet from any IP to be able to contact x.x.x.x on port 443 &lt;/P&gt;&lt;P&gt;-This request will be accepted &lt;/P&gt;&lt;P&gt;-Port will be changed to 8443 before reaching the server&lt;/P&gt;&lt;P&gt;-The IP address of the requestor will never change, nor will the IP address of the server (x.x.x.x)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2011 10:00:46 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774267#M495113</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2011-10-21T10:00:46Z</dc:date>
    </item>
    <item>
      <title>Change the port number going into ASA arriving on outside interf</title>
      <link>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774268#M495114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if I am wrong:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Public ip of server is x.x.x.x&lt;/P&gt;&lt;P&gt;2. The server lies on the inside interface of the ASA&lt;/P&gt;&lt;P&gt;3. Users are connecting on port 443 and needs to be redirected to 8443.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Questions:&lt;/P&gt;&lt;P&gt;1. What is the private ip of the server.&lt;/P&gt;&lt;P&gt;2. Have you assigned a public ip directly on the server?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2011 10:08:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774268#M495114</guid>
      <dc:creator>varrao</dc:creator>
      <dc:date>2011-10-21T10:08:47Z</dc:date>
    </item>
    <item>
      <title>Change the port number going into ASA arriving on outside interf</title>
      <link>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774269#M495115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Varun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. The public IP of the server is x.x.x.x. This is only IP the server has, we are not using private addresses.&lt;/P&gt;&lt;P&gt;2. The server is on the inside of the inside interface of the ASA.&lt;/P&gt;&lt;P&gt;3. Yes, users are connecting on port 443 and needs to be redirected to 8443.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Answers:&lt;/P&gt;&lt;P&gt;1. There is no private IP on the server as we are not using private addresses anywhere on the network.&lt;/P&gt;&lt;P&gt;2. The public IP has been assigned directly on the NIC of the server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that has made it clearer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2011 10:14:48 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774269#M495115</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2011-10-21T10:14:48Z</dc:date>
    </item>
    <item>
      <title>Change the port number going into ASA arriving on outside interf</title>
      <link>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774270#M495116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then you need to use this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) tcp x.x.x.x 443 x.x.x.x 8443&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should do the port redirection for the server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2011 10:23:06 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774270#M495116</guid>
      <dc:creator>varrao</dc:creator>
      <dc:date>2011-10-21T10:23:06Z</dc:date>
    </item>
    <item>
      <title>Change the port number going into ASA arriving on outside interf</title>
      <link>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774271#M495117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The way I understand that is that it will change anything &lt;STRONG&gt;coming from the inside&lt;/STRONG&gt; from port 8443 to the outside on port 8443. Is that not why it reference inside first in the statement you sent me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (&lt;STRONG&gt;inside&lt;/STRONG&gt;,outside) tcp x.x.x.x 443 x.x.x.x 8443&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to change the port for traffic&lt;STRONG&gt; coming from the outside interface&lt;/STRONG&gt; instead, without changing the originating IP address.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;User on internet (outside) IP y.y.y.y tries to connect to server on inside x.x.x.x on port 443. The firewall changes the port to 8443 &lt;STRONG&gt;before&lt;/STRONG&gt; it gets to the server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2011 10:41:36 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774271#M495117</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2011-10-21T10:41:36Z</dc:date>
    </item>
    <item>
      <title>Change the port number going into ASA arriving on outside interf</title>
      <link>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774272#M495118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No No No, thats not what it means.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It means, this static statement is for the destination, if a request coming from outside but going to the server x.x.x.x on inisde at port 443, woudl be re-directed to ip x.x.x.x (whihc is same in our case) and on port 8443.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This nat statement doesn't change your originating ip.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you have any questions for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2011 10:48:02 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774272#M495118</guid>
      <dc:creator>varrao</dc:creator>
      <dc:date>2011-10-21T10:48:02Z</dc:date>
    </item>
    <item>
      <title>Change the port number going into ASA arriving on outside interf</title>
      <link>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774273#M495119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So does that mean that regardless of which way the traffic is going the port will be changed? i.e.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from outside to inside 443 -&amp;gt; 8443&lt;/P&gt;&lt;P&gt;from inside to outside 8443 -&amp;gt; 443&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, you never used a netmask after the statement, why not?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2011 10:57:36 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774273#M495119</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2011-10-21T10:57:36Z</dc:date>
    </item>
    <item>
      <title>Change the port number going into ASA arriving on outside interf</title>
      <link>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774274#M495120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Absoluetly &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/4.5.4/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Return packets would also be converted back to port 443 when leaving the ASA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2011 11:02:53 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774274#M495120</guid>
      <dc:creator>varrao</dc:creator>
      <dc:date>2011-10-21T11:02:53Z</dc:date>
    </item>
    <item>
      <title>Change the port number going into ASA arriving on outside interf</title>
      <link>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774275#M495121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect! Thanks &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/4.5.4/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How about the fact that you never used the netmask statement e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) tcp x.x.x.x 443 x.x.x.x 8443 &lt;STRONG&gt;netmask 255.255.255.255&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why is that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2011 11:15:06 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774275#M495121</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2011-10-21T11:15:06Z</dc:date>
    </item>
    <item>
      <title>Change the port number going into ASA arriving on outside interf</title>
      <link>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774276#M495122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It adds the netmask it self, if you add the statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) tcp x.x.x.x 443 x.x.x.x 8443&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;show run static&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You would see the firewall would add the netmask itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Glad I could help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2011 11:36:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774276#M495122</guid>
      <dc:creator>varrao</dc:creator>
      <dc:date>2011-10-21T11:36:04Z</dc:date>
    </item>
    <item>
      <title>Change the port number going into ASA arriving on outside interf</title>
      <link>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774277#M495123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks again, you were a lot of help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2011 11:38:32 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/change-the-port-number-going-into-asa-arriving-on-outside/m-p/1774277#M495123</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2011-10-21T11:38:32Z</dc:date>
    </item>
  </channel>
</rss>

