<?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 Please feel free to share the in Switching</title>
    <link>https://community.cisco.com/t5/switching/how-do-i-configure-a-router-switch-act-as-an-isp/m-p/3007344#M372193</link>
    <description>&lt;P&gt;Please feel free to share the config in order to verify.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 14 May 2017 21:58:04 GMT</pubDate>
    <dc:creator>Julio E. Moisa</dc:creator>
    <dc:date>2017-05-14T21:58:04Z</dc:date>
    <item>
      <title>How do I configure a router/switch act as an ISP?</title>
      <link>https://community.cisco.com/t5/switching/how-do-i-configure-a-router-switch-act-as-an-isp/m-p/3007340#M372189</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;I'm building a network that happens to be: PC -&amp;gt; R1 -&amp;gt; R2 -&amp;gt; R3 -&amp;gt; ISP. The R3 will be configured as DHCP Server and I'll practice NAT/PAT on it too. My question is how do I make the ISP act as a router or switch?&lt;/P&gt;
&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Fri, 08 Mar 2019 18:34:24 GMT</pubDate>
      <guid>https://community.cisco.com/t5/switching/how-do-i-configure-a-router-switch-act-as-an-isp/m-p/3007340#M372189</guid>
      <dc:creator>sabregod</dc:creator>
      <dc:date>2019-03-08T18:34:24Z</dc:date>
    </item>
    <item>
      <title>Hi</title>
      <link>https://community.cisco.com/t5/switching/how-do-i-configure-a-router-switch-act-as-an-isp/m-p/3007341#M372190</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;As it is a Lab, you could configure specifics static&amp;nbsp;routes on ISP router to have reachability to&amp;nbsp;all the networks in R1, R2 and R3 and create loopbacks to simulate public networks, for example&amp;nbsp;&lt;/P&gt;
&lt;P&gt;interface loopback 100&lt;BR /&gt;description Internet&lt;BR /&gt;ip address 8.8.8.8 255.255.255.255&amp;nbsp;&lt;BR /&gt;ip address 100.100.100.100 &amp;nbsp;255.255.255.255 secondary&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Remember the ISP router knows how to return the packets, that is the reason of the static routes pointing to R3. In order to verify the NAT you could use a debug: &lt;SPAN style="color: #0000ff;"&gt;debug ip nat translations&lt;/SPAN&gt; &amp;nbsp; on R3. To disable the debug, you can use: &lt;SPAN style="color: #0000ff;"&gt;undebug all&lt;/SPAN&gt; or &lt;SPAN style="color: #0000ff;"&gt;u all&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Now R3 should have a default route pointing to ISP router.&lt;/P&gt;
&lt;P&gt;Hope it is useful&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 14 May 2017 20:22:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/switching/how-do-i-configure-a-router-switch-act-as-an-isp/m-p/3007341#M372190</guid>
      <dc:creator>Julio E. Moisa</dc:creator>
      <dc:date>2017-05-14T20:22:13Z</dc:date>
    </item>
    <item>
      <title>Thanks. I set the static</title>
      <link>https://community.cisco.com/t5/switching/how-do-i-configure-a-router-switch-act-as-an-isp/m-p/3007342#M372191</link>
      <description>&lt;P&gt;Thanks. I set the static route of ISP to reach all networks but I can also ping the loopback which I shouldn't have to since I haven't configured NAT? I should've mention I'm doing it in packet tracer &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 14 May 2017 21:10:12 GMT</pubDate>
      <guid>https://community.cisco.com/t5/switching/how-do-i-configure-a-router-switch-act-as-an-isp/m-p/3007342#M372191</guid>
      <dc:creator>sabregod</dc:creator>
      <dc:date>2017-05-14T21:10:12Z</dc:date>
    </item>
    <item>
      <title>You are right, </title>
      <link>https://community.cisco.com/t5/switching/how-do-i-configure-a-router-switch-act-as-an-isp/m-p/3007343#M372192</link>
      <description>&lt;P&gt;You are right,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this config on the R3 router,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;int g0/0&lt;BR /&gt;description TO-ISP-ROUTER&lt;BR /&gt;Ip address 10.0.0.1 255.255.255.252&lt;BR /&gt;ip nat outside&lt;BR /&gt;no shutdown&lt;/P&gt;
&lt;P&gt;int g0/1&lt;BR /&gt;description TO-R2&lt;BR /&gt;ip add 192.168.1.1 255.255.255.0&lt;BR /&gt;ip nat inside&lt;BR /&gt;no shutdown&lt;/P&gt;
&lt;P&gt;ip access-list standard PRIVATE-NETS&lt;BR /&gt;permit ip 172.16.10.0 0.0.0.255&lt;BR /&gt;&lt;SPAN&gt;permit ip 172.16.11.0 0.0.0.255&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;permit ip 172.16.12.0 0.0.0.255&lt;BR /&gt;&amp;lt;basically the subnets to be translated to the public IP&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;interface&amp;nbsp;G0/2&lt;BR /&gt;description PUBLIC-IP-PROVIDED-BY-ISP&lt;BR /&gt;ip add 190.1.1.1 255.255.255.252&lt;BR /&gt;&lt;FONT color="#0000ff"&gt;no keepalive &amp;nbsp; &amp;lt;-- it will keep UP UP the interface although&amp;nbsp;it is not connected to any device.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;ip nat inside source list&amp;nbsp;&lt;SPAN&gt;PRIVATE-NETS interface g0/2&amp;nbsp;overload&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;ip route 0.0.0.0 0.0.0.0&amp;nbsp;10.0.0.2 name TO-INTERNET &amp;nbsp;(ISP Router)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000;"&gt;Unfortunately on packet tracer we cannot use loopback for NAT (I used g0/2 an available interface) but try the config above or try just removing the statics routes on IPS Router and try again. If is possible please share your config on R3 and ISP thanks&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;ISP ROUTER&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please remove all the static routes created previously and just create one.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;ip route 190.1.1.1 255.255.255.255&amp;nbsp;10.0.0.1&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Remember activate the debug on R3.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Please keep me posted.&amp;nbsp;not sure if debug can be executed on packet tracer.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 14 May 2017 21:50:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/switching/how-do-i-configure-a-router-switch-act-as-an-isp/m-p/3007343#M372192</guid>
      <dc:creator>Julio E. Moisa</dc:creator>
      <dc:date>2017-05-14T21:50:20Z</dc:date>
    </item>
    <item>
      <title>Please feel free to share the</title>
      <link>https://community.cisco.com/t5/switching/how-do-i-configure-a-router-switch-act-as-an-isp/m-p/3007344#M372193</link>
      <description>&lt;P&gt;Please feel free to share the config in order to verify.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 14 May 2017 21:58:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/switching/how-do-i-configure-a-router-switch-act-as-an-isp/m-p/3007344#M372193</guid>
      <dc:creator>Julio E. Moisa</dc:creator>
      <dc:date>2017-05-14T21:58:04Z</dc:date>
    </item>
    <item>
      <title>Here's my packet tracer which</title>
      <link>https://community.cisco.com/t5/switching/how-do-i-configure-a-router-switch-act-as-an-isp/m-p/3007345#M372194</link>
      <description>&lt;P&gt;Here's my packet tracer which includes all configuration so far.&lt;/P&gt;</description>
      <pubDate>Sun, 14 May 2017 22:03:07 GMT</pubDate>
      <guid>https://community.cisco.com/t5/switching/how-do-i-configure-a-router-switch-act-as-an-isp/m-p/3007345#M372194</guid>
      <dc:creator>sabregod</dc:creator>
      <dc:date>2017-05-14T22:03:07Z</dc:date>
    </item>
    <item>
      <title>Here we go, I detected that</title>
      <link>https://community.cisco.com/t5/switching/how-do-i-configure-a-router-switch-act-as-an-isp/m-p/3007346#M372195</link>
      <description>&lt;P&gt;Here we go, I detected that R3 and ISP were not able to make ping each other, it could be because the network 1.0.0.0, I never used that but aparently it was not supported. I changed them to network 10.0.0.0&lt;/P&gt;
&lt;P&gt;Please see my config, on R3 and ISP, i have created a nat pool to emulate a public IP, also debug ip nat is supported, please verify it once the ping is execute on the PC.&lt;/P&gt;
&lt;P&gt;If you dont want the pool, you can remove and replace the NAT statement by the following:&lt;/P&gt;
&lt;P&gt;ip nat inside source list PRIVATE-NETS interface &lt;SPAN style="color: #0000ff;"&gt;FastEthernet0/0&lt;/SPAN&gt; overload&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Please remember to rate the comment if it is useful or answered the question.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 14 May 2017 22:35:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/switching/how-do-i-configure-a-router-switch-act-as-an-isp/m-p/3007346#M372195</guid>
      <dc:creator>Julio E. Moisa</dc:creator>
      <dc:date>2017-05-14T22:35:18Z</dc:date>
    </item>
  </channel>
</rss>

