<?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 Re: Lan to Lan cisco 2921 router in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/lan-to-lan-cisco-2921-router/m-p/3843346#M30005</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/860764"&gt;@daniel253&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Theoretically, there should be communication between networks directly connected to the same router.&lt;BR /&gt;Could you share the result of the &lt;STRONG&gt;&lt;EM&gt;show ip route&lt;/EM&gt;&lt;/STRONG&gt; command?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 23 Apr 2019 16:55:10 GMT</pubDate>
    <dc:creator>luis_cordova</dc:creator>
    <dc:date>2019-04-23T16:55:10Z</dc:date>
    <item>
      <title>Lan to Lan cisco 2921 router</title>
      <link>https://community.cisco.com/t5/network-security/lan-to-lan-cisco-2921-router/m-p/3843331#M30004</link>
      <description>&lt;P&gt;I'm trying to to configure a router cisco 2921, but I'm a beginner.&lt;/P&gt;&lt;P&gt;Basically I have 5 interfaces in this router, 2 of them I use for ISP links and the others I configured for independent lans with their own dhcp.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My problem is, I want&amp;nbsp;&amp;nbsp;interface GigabitEthernet0/0 to comunicate with&amp;nbsp;interface FastEthernet0/0/0 and vice versa, but keeping their own dhcp pool.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;interface GigabitEthernet0/0&lt;BR /&gt;description ADM&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ip address 192.168.4.1 255.255.255.0&lt;BR /&gt;ip nat inside&lt;BR /&gt;no shutdown&lt;BR /&gt;ip virtual-reassembly in&lt;BR /&gt;duplex auto&lt;BR /&gt;speed auto&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;interface FastEthernet0/0/0&lt;BR /&gt;description USERS&lt;BR /&gt;ip address 192.168.2.1 255.255.255.0&lt;BR /&gt;ip nat inside&lt;BR /&gt;no shutdown&lt;BR /&gt;ip virtual-reassembly in&lt;BR /&gt;duplex auto&lt;BR /&gt;speed auto&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;interface FastEthernet0/0/1&lt;BR /&gt;description EXTERNAL&lt;BR /&gt;ip address 192.168.1.1 255.255.255.0&lt;BR /&gt;ip nat inside&lt;BR /&gt;no shutdown&lt;BR /&gt;ip virtual-reassembly in&lt;BR /&gt;duplex auto&lt;BR /&gt;speed auto&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ip access-list extended NAT_LAN&lt;BR /&gt;permit ip 192.168.4.0 0.0.0.255 any&lt;BR /&gt;permit ip 192.168.2.0 0.0.0.255 any&lt;BR /&gt;permit ip 192.168.1.0 0.0.0.255 any&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;route-map NAT_ISP1_Main permit 10&lt;BR /&gt;match ip address NAT_LAN&lt;BR /&gt;match interface GigabitEthernet0/1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;route-map NAT_ISP2_Back-up permit 10&lt;BR /&gt;match ip address NAT_LAN&lt;BR /&gt;match interface GigabitEthernet0/2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ip sla 1&lt;BR /&gt;icmp-echo 8.8.8.8 source-interface GigabitEthernet0/1&lt;BR /&gt;frequency 30&lt;BR /&gt;ip sla schedule 1 life forever start-time now&lt;BR /&gt;track 1 ip sla 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ip route 0.0.0.0 0.0.0.0 X.X.X.X track 1&lt;BR /&gt;ip route 0.0.0.0 0.0.0.0 X.X.X.X 30&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ip nat inside source route-map NAT_ISP1_Main interface GigabitEthernet0/1 overload&lt;BR /&gt;ip nat inside source route-map NAT_ISP2_Back-up interface GigabitEthernet0/2 overload&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ip dhcp excluded-address 192.168.4.1 192.168.4.99&lt;BR /&gt;ip dhcp excluded-address 192.168.4.200 192.168.4.254&lt;BR /&gt;ip dhcp excluded-address 192.168.1.1 192.168.1.19&lt;BR /&gt;ip dhcp excluded-address 192.168.1.22 192.168.1.254&lt;BR /&gt;ip dhcp excluded-address 192.168.2.1 192.168.2.99&lt;BR /&gt;ip dhcp excluded-address 192.168.2.161 192.168.2.254&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ip dhcp pool ADM&lt;BR /&gt;network 192.168.4.0 255.255.255.0&lt;BR /&gt;default-router 192.168.4.1&lt;BR /&gt;dns-server 1.1.1.1 1.0.0.1&lt;BR /&gt;lease 0 4 30&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ip dhcp pool EXTERNAL&lt;BR /&gt;network 192.168.1.0 255.255.255.0&lt;BR /&gt;default-router 192.168.1.1&lt;BR /&gt;dns-server 199.85.126.30 199.85.127.30&lt;BR /&gt;lease 0 4 30&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ip dhcp pool USERS&lt;BR /&gt;network 192.168.2.0 255.255.255.0&lt;BR /&gt;default-router 192.168.2.1&lt;BR /&gt;dns-server 1.1.1.1 1.0.0.1&lt;BR /&gt;lease 0 4 30&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2019 16:40:56 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/lan-to-lan-cisco-2921-router/m-p/3843331#M30004</guid>
      <dc:creator>daniel253</dc:creator>
      <dc:date>2019-04-23T16:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: Lan to Lan cisco 2921 router</title>
      <link>https://community.cisco.com/t5/network-security/lan-to-lan-cisco-2921-router/m-p/3843346#M30005</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/860764"&gt;@daniel253&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Theoretically, there should be communication between networks directly connected to the same router.&lt;BR /&gt;Could you share the result of the &lt;STRONG&gt;&lt;EM&gt;show ip route&lt;/EM&gt;&lt;/STRONG&gt; command?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2019 16:55:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/lan-to-lan-cisco-2921-router/m-p/3843346#M30005</guid>
      <dc:creator>luis_cordova</dc:creator>
      <dc:date>2019-04-23T16:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: Lan to Lan cisco 2921 router</title>
      <link>https://community.cisco.com/t5/network-security/lan-to-lan-cisco-2921-router/m-p/3843377#M30007</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/624661"&gt;@luis_cordova&lt;/a&gt;&amp;nbsp;see bellow:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;show ip route&lt;BR /&gt;Codes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP&lt;BR /&gt;D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area&lt;BR /&gt;N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2&lt;BR /&gt;E1 - OSPF external type 1, E2 - OSPF external type 2&lt;BR /&gt;i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2&lt;BR /&gt;ia - IS-IS inter area, * - candidate default, U - per-user static route&lt;BR /&gt;o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP&lt;BR /&gt;a - application route&lt;BR /&gt;+ - replicated route, % - next hop override, p - overrides from PfR&lt;/P&gt;&lt;P&gt;Gateway of last resort is x.x.214.73 to network 0.0.0.0&lt;/P&gt;&lt;P&gt;S* 0.0.0.0/0 [1/0] via x&lt;SPAN&gt;.x.214.73&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;x.x.0.0/16 is variably subnetted, 2 subnets, 2 masks&lt;BR /&gt;C x.x.214.72/29 is directly connected, GigabitEthernet0/1&lt;BR /&gt;L x.x.214.75/32 is directly connected, GigabitEthernet0/1&lt;BR /&gt;x.x.0.0/16 is variably subnetted, 2 subnets, 2 masks&lt;BR /&gt;C x.x.201.80/29 is directly connected, GigabitEthernet0/2&lt;BR /&gt;L x.x.201.86/32 is directly connected, GigabitEthernet0/2&lt;BR /&gt;192.168.1.0/24 is variably subnetted, 2 subnets, 2 masks&lt;BR /&gt;C 192.168.1.0/24 is directly connected, FastEthernet0/0/1&lt;BR /&gt;L 192.168.1.1/32 is directly connected, FastEthernet0/0/1&lt;BR /&gt;192.168.2.0/24 is variably subnetted, 2 subnets, 2 masks&lt;BR /&gt;C 192.168.2.0/24 is directly connected, FastEthernet0/0/0&lt;BR /&gt;L 192.168.2.1/32 is directly connected, FastEthernet0/0/0&lt;BR /&gt;192.168.4.0/24 is variably subnetted, 2 subnets, 2 masks&lt;BR /&gt;C 192.168.4.0/24 is directly connected, GigabitEthernet0/0&lt;BR /&gt;L 192.168.4.1/32 is directly connected, GigabitEthernet0/0&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2019 17:37:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/lan-to-lan-cisco-2921-router/m-p/3843377#M30007</guid>
      <dc:creator>daniel253</dc:creator>
      <dc:date>2019-04-23T17:37:05Z</dc:date>
    </item>
    <item>
      <title>Re: Lan to Lan cisco 2921 router</title>
      <link>https://community.cisco.com/t5/network-security/lan-to-lan-cisco-2921-router/m-p/3843384#M30008</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/860764"&gt;@daniel253&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;By having the networks directly connected and not having an ACL that blocks communication, there should be no problem in communicating the 2 networks, keeping the DHCP separated by network.&lt;BR /&gt;Have you done any tests to evaluate the connection between these two networks?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2019 17:40:25 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/lan-to-lan-cisco-2921-router/m-p/3843384#M30008</guid>
      <dc:creator>luis_cordova</dc:creator>
      <dc:date>2019-04-23T17:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: Lan to Lan cisco 2921 router</title>
      <link>https://community.cisco.com/t5/network-security/lan-to-lan-cisco-2921-router/m-p/3843394#M30009</link>
      <description>yes, these tree networks can navigate through the internet using IPS 1 or IPS2.&lt;BR /&gt;&lt;BR /&gt;But I can't ping lan to lan. For example if I'm on the ge 0/0 side, i can't ping fe0/0/0.&lt;BR /&gt;I also tried to ping from the router but I had communication problems either.&lt;BR /&gt;&lt;BR /&gt;router#ping 192.168.4.107&lt;BR /&gt;Type escape sequence to abort.&lt;BR /&gt;Sending 5, 100-byte ICMP Echos to 192.168.4.107, timeout is 2 seconds:&lt;BR /&gt;!!!!!&lt;BR /&gt;Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/4 ms&lt;BR /&gt;router#ping 192.168.2.100&lt;BR /&gt;Type escape sequence to abort.&lt;BR /&gt;Sending 5, 100-byte ICMP Echos to 192.168.2.100, timeout is 2 seconds:&lt;BR /&gt;.....&lt;BR /&gt;Success rate is 0 percent (0/5)&lt;BR /&gt;router#ping 192.168.1.20&lt;BR /&gt;Type escape sequence to abort.&lt;BR /&gt;Sending 5, 100-byte ICMP Echos to 192.168.1.20, timeout is 2 seconds:&lt;BR /&gt;.....&lt;BR /&gt;Success rate is 0 percent (0/5)</description>
      <pubDate>Tue, 23 Apr 2019 17:55:19 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/lan-to-lan-cisco-2921-router/m-p/3843394#M30009</guid>
      <dc:creator>daniel253</dc:creator>
      <dc:date>2019-04-23T17:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: Lan to Lan cisco 2921 router</title>
      <link>https://community.cisco.com/t5/network-security/lan-to-lan-cisco-2921-router/m-p/3843416#M30010</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/860764"&gt;@daniel253&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Only to discard, it disables the firewalls of the final devices.&lt;BR /&gt;Sometimes, firewalls prevent the pings of external networks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2019 18:19:40 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/lan-to-lan-cisco-2921-router/m-p/3843416#M30010</guid>
      <dc:creator>luis_cordova</dc:creator>
      <dc:date>2019-04-23T18:19:40Z</dc:date>
    </item>
    <item>
      <title>Re: Lan to Lan cisco 2921 router</title>
      <link>https://community.cisco.com/t5/network-security/lan-to-lan-cisco-2921-router/m-p/3843420#M30011</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Perhaps these devices 192.168.1.20 and 192.168.2.100 you are attempting to ping from the router have a local firewall enabled, and blocking ping - Have you confirmed?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you ping the router from those client devices?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2019 18:32:43 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/lan-to-lan-cisco-2921-router/m-p/3843420#M30011</guid>
      <dc:creator>Rob Ingram</dc:creator>
      <dc:date>2019-04-23T18:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: Lan to Lan cisco 2921 router</title>
      <link>https://community.cisco.com/t5/network-security/lan-to-lan-cisco-2921-router/m-p/3850990#M30012</link>
      <description>&lt;P&gt;Sorry! I was a little confused that I forgot about allowing ping in Windows firewall.&lt;/P&gt;&lt;P&gt;I did a couple of tests and it's working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I'm in the middle of another problem, I need to access the CCTV when I'm not in the building.&lt;/P&gt;&lt;P&gt;I tried some configurations to allow port traffic but nothing with success.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think that there's something missing. I did some research but nothing helpful.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ip nat inside source static tcp 192.168.4.100 37777 interface GigabitEthernet0/1 37777&lt;BR /&gt;ip nat inside source static tcp 192.168.4.100 774 interface GigabitEthernet0/1 774&lt;BR /&gt;ip nat inside source static tcp 192.168.4.100 443 interface GigabitEthernet0/1 443&lt;BR /&gt;ip nat inside source static tcp 192.168.4.100 554 interface GigabitEthernet0/1 554&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ip access-list extended nat-acl&lt;BR /&gt;permit ip 192.168.4.0 0.0.0.255 any&lt;BR /&gt;permit tcp any host 192.168.4.100 eq 37777&lt;BR /&gt;permit tcp any host 192.168.4.100 eq 774&lt;BR /&gt;permit tcp any host 192.168.4.100 eq 443&lt;BR /&gt;permit tcp any host 192.168.4.100 eq 554&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Service port: 37777&lt;BR /&gt;HTTP: 774&lt;BR /&gt;HTTPS: 443&lt;BR /&gt;RTSP: 554&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2019 17:36:50 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/lan-to-lan-cisco-2921-router/m-p/3850990#M30012</guid>
      <dc:creator>daniel253</dc:creator>
      <dc:date>2019-05-06T17:36:50Z</dc:date>
    </item>
  </channel>
</rss>

