<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule">

<channel>
<title>Re: [HELP] Help with Cisco Nat in Cisco</title>
<link>http://www.dslreports.com/forum/r20793509</link>
<description></description>
<language>en</language>
<pubDate>Wed, 11 Nov 2009 03:39:23 EDT</pubDate>
<lastBuildDate>Wed, 11 Nov 2009 03:39:23 EDT</lastBuildDate>

<item>
<title>Re: [HELP] Help with Cisco Nat</title>
<link>http://www.dslreports.com/forum/remark,20805245</link>
<description><![CDATA[<A HREF="/useremail/u/676954"><b>aryoba</b></A> : Assuming your router has BGP relationship with your ISP, following is one way of designing your network.<br><br>On this sample configuration, the 172.16.0.5 IP address is the FTP and Web server you like to broadcast. All users are within 192.168.0.0/24 subnet.<br><br>This configuration takes care of both your load sharing and/or automatic failover design and your Server NAT problem.<br><br>!<br>version 12.4<br>service timestamps debug datetime msec<br>service timestamps log datetime msec<br>service password-encryption<br>!<br>hostname U-MainRouter<br>!<br>boot-start-marker<br>boot-end-marker<br>!<br>no logging buffered<br>enable secret 5 **********<br>enable password 7 **********<br>!<br>no aaa new-model<br>!<br>resource policy<br>!<br>mmi polling-interval 60<br>no mmi auto-configure<br>no mmi pvc<br>mmi snmp-timeout 180<br>ip subnet-zero<br>ip cef<br>!<br>!<br>no ip dhcp use vrf connected<br>ip dhcp excluded-address 192.168.0.0 192.168.0.200<br>!<br>ip dhcp pool dhcp1<br>network 192.168.0.0 255.255.255.0<br>default-router 192.168.0.2<br>dns-server 203.115.130.8 210.4.2.61<br>!<br>!<br>no ip ips deny-action ips-interface<br>ip domain name yourdomain.com<br>ip name-server 203.115.130.8<br>ip name-server 210.4.2.61<br>!<br>!<br>!<br>!<br>username test privilege 15 password 7 **********<br>!<br>!<br>!<br>!<br>!<br>interface FastEthernet0/0<br>description Internet-accessible servers<br>ip address 172.16.0.1 255.255.255.0<br>ip nat inside<br>ip virtual-reassembly<br>ip route-cache flow<br>duplex auto<br>speed auto<br>!<br>interface FastEthernet0/1<br>description Interface-Facing-Users<br>ip address 192.168.0.2 255.255.255.0<br>ip access-group 50 out<br>ip nat inside<br>ip virtual-reassembly<br>ip route-cache flow<br>speed auto<br>duplex auto<br>no mop enabled<br>!<br>interface Serial0/0/0<br>description Interface-Facing-ISP<br>ip address 202.78.78.254 255.255.255.252<br>ip nat outside<br>ip virtual-reassembly<br>ip route-cache flow<br>!<br>interface Serial0/0/1<br>no ip address<br>shutdown<br>clock rate 2000000<br>!<br>interface Serial0/1/0<br>description Interface-Facing-ISP<br>ip address 121.97.74.126 255.255.255.252<br>ip nat outside<br>ip virtual-reassembly<br>ip route-cache flow<br>!<br>router bgp [YOUR BGP AS NUMBER HERE]<br>no synchronization<br>bgp log-neighbor-changes<br>network 121.97.74.124 mask 255.255.255.252<br>network 202.78.78.252 mask 255.255.255.252<br>network 121.96.17.64 mask 255.255.255.192<br>network 121.96.27.0 mask 255.255.255.192<br>neighbor 121.97.74.125 remote-as [YOUR ISP BGP AS NUMBER HERE]<br>neighbor 121.97.74.125 description BGP AS Peer #1<br>neighbor 121.97.74.125 soft-reconfiguration inbound<br>neighbor 202.78.78.253 remote-as [YOUR ISP BGP AS NUMBER HERE]<br>neighbor 202.78.78.253 description BGP AS Peer #2<br>neighbor 202.78.78.253 soft-reconfiguration inbound<br>no auto-summary<br>!<br>ip classless<br>!<br>no ip http server<br>no ip http secure-server<br>ip nat pool User 121.96.27.28 121.96.27.28 prefix-length 26<br>ip nat inside source list 1 pool User<br>ip nat inside source static tcp 172.16.0.5 21 121.96.17.70 21 extendable<br>ip nat inside source static tcp 172.16.0.5 80 121.96.17.70 80 extendable<br>ip nat inside source static tcp 172.16.0.5 3389 121.96.17.70 3389 extendable<br>!<br>access-list 1 permit 192.168.0.0 0.0.0.255<br>access-list 50 deny 209.11.168.114 -- these are youtube's and<br>access-list 50 deny 209.11.168.115 and friendster addresses.<br>access-list 50 deny 209.11.168.112<br>access-list 50 deny 209.11.168.113<br>access-list 50 deny 209.11.168.118<br>access-list 50 deny 209.11.168.119<br>access-list 50 deny 209.11.168.116<br>access-list 50 deny 209.11.168.117<br>access-list 50 deny 209.11.168.122<br>access-list 50 deny 209.11.168.123<br>access-list 50 deny 209.11.168.120<br>access-list 50 deny 209.11.168.121<br>access-list 50 deny 208.117.236.69<br>access-list 50 deny 209.11.168.126<br>access-list 50 deny 209.11.168.127<br>access-list 50 deny 209.11.168.124<br>access-list 50 deny 209.11.168.125<br>access-list 50 deny 209.11.168.110<br>access-list 50 deny 209.11.168.111<br>access-list 50 deny 208.65.153.238<br>access-list 50 deny 209.11.168.130<br>access-list 50 deny 209.11.168.128<br>access-list 50 deny 208.65.153.250<br>access-list 50 deny 208.65.153.251<br>access-list 50 deny 209.11.168.129<br>access-list 50 deny 208.65.153.252<br>access-list 50 deny 208.65.153.253<br>access-list 50 deny 208.65.153.254<br>access-list 50 deny 208.65.153.255<br>access-list 50 permit any<br>!<br>!<br>control-plane<br>!<br>!<br>line con 0<br>line aux 0<br>line vty 0 4<br>exec-timeout 180 0<br>privilege level 15<br>password 7 **********<br>login local<br>transport input telnet<br>!<br>end]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20805245</guid>
<pubDate>Thu, 17 Jul 2008 10:28:16 EDT</pubDate>
</item>

<item>
<title>Re: [HELP] Help with Cisco Nat</title>
<link>http://www.dslreports.com/forum/remark,20799380</link>
<description><![CDATA[<A HREF="/useremail/u/1566346"><b>zhrike</b></A> : But that was before load-sharing was configured. Since we started load-sharing, our ISP at the remote side configured our 2 WAN and LAN IP's to able to communicate to each other. Can you help me with the basic networking stuff. we really need to broadcast our <b>Server</b>, because my co-workers here need some access to it from home.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20799380</guid>
<pubDate>Wed, 16 Jul 2008 10:08:21 EDT</pubDate>
</item>

<item>
<title>Re: [HELP] Help with Cisco Nat</title>
<link>http://www.dslreports.com/forum/remark,20799246</link>
<description><![CDATA[<A HREF="/useremail/u/676954"><b>aryoba</b></A> : If 1st WAN can only access 1st LAN subnet and 2nd WAN can only access 2nd LAN subnet, then there is no point of configuring load-sharing per packet since one circuit is always forced to use to access specific LAN subnet. I believe either LAN subnet should be accessible via either WAN circuit to have proper load sharing and/or automatic failover.<br><br>I can see setting up your Server NAT need is straight forward in your case. However before configuring the server NAT statement and reachability, I would suggest that you (with everybody responsible of your company network) assess the best practice of network design with your ISP to establish proper load balancing between two WAN circuits.<br><br>Keep in mind that any service or application (including your server) reachability and functionality rely on and run over both WAN circuits. Such reachability and functionality require a good network design to have stable connectivity. Without having a good network design, you just shoot yourself on the foot and rely on luck :D<br><br>If I were you I would start by designing a good BGP network design with your ISP. Once it is done, tested, and looking good; then you can move on to the server NAT configuration.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20799246</guid>
<pubDate>Wed, 16 Jul 2008 09:43:47 EDT</pubDate>
</item>

<item>
<title>Re: [HELP] Help with Cisco Nat</title>
<link>http://www.dslreports.com/forum/remark,20799049</link>
<description><![CDATA[<A HREF="/useremail/u/1566346"><b>zhrike</b></A> : <div class="bquote"><small>said by  aryoba <A HREF="/useremail/u/676954"><IMG SRC="http://i.dslr.net/bb/profile.gif" ALT="See Profile" BORDER=0 WIDTH=16 HEIGHT=11></A> :</small><br><br><div class="bquote"><small>said by  zhrike <A HREF="/useremail/u/1566346"><IMG SRC="http://i.dslr.net/bb/profile.gif" ALT="See Profile" BORDER=0 WIDTH=16 HEIGHT=11></A>    :</small><br><br>@aryoba<br><br>This is the Original IP's given by our ISP.<br>Because we actually have (2) E1 2MB Connections from the same ISP. We aggregated it to make it up to 4MB Connection.<br><br>======================<br>1st E1<br>WAN - 202.78.78.254/30<br>LAN - 121.96.27.28/26<br>======================<br>======================<br>2nd E1<br>WAN - 121.97.74.126/30<br>LAN - 121.96.17.64/26<br>======================<br></div>Can you confirm with your ISP as to how they setup routing redundancy on their end? This is a requirement to make sure that your network design matches the ISP network design.<br><br>One thing you need to confirm is following. Would any of the LAN subnet be reachable via any WAN circuit? Is the 121.96.27.0/26 subnet reachable only via 202.78.78.252/30? Or is the 121.96.27.0/26 subnet also reachable via 121.97.74.124/30? The same question goes to the 2nd 121.96.17.64/26 LAN subnet.<br><br>If all LAN subnets are reachable via any WAN circuit, then the next question is following. Is there any preference as to which WAN circuit to take to reach any LAN subnet or specific LAN subnet? Or is it just equal-cost routing to reach any or specific LAN subnet?<br><br>I also notice that you are doing static routes with your ISP. Is there a reason why you don't run dynamic routing such as BGP with your ISP?<br> </div>Yes. 1st WAN can only access 1st LAN IPs, that goes for the 2nd WAN and LAN IPs. But we have configured it's Serial's to load-sharing per-packet, that goes to their end too.<br>That's why I want to translate my <b>Server's</b> ip address 192.168.0.5 to any of the 121.96.17.6x ip's since it's the first ip address on my FastEthernet interface. Is there any hope on this?<br><br>And about static routes, i'm really new to Cisco and i don't have any knowledge to BGP.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20799049</guid>
<pubDate>Wed, 16 Jul 2008 09:02:42 EDT</pubDate>
</item>

<item>
<title>Re: [HELP] Help with Cisco Nat</title>
<link>http://www.dslreports.com/forum/remark,20799022</link>
<description><![CDATA[<A HREF="/useremail/u/676954"><b>aryoba</b></A> : <div class="bquote"><small>said by  zhrike <A HREF="/useremail/u/1566346"><IMG SRC="http://i.dslr.net/bb/profile.gif" ALT="See Profile" BORDER=0 WIDTH=16 HEIGHT=11></A>   :</small><br><br>@aryoba<br><br>This is the Original IP's given by our ISP.<br>Because we actually have (2) E1 2MB Connections from the same ISP. We aggregated it to make it up to 4MB Connection.<br><br>======================<br>1st E1<br>WAN - 202.78.78.254/30<br>LAN - 121.96.27.28/26<br>======================<br>======================<br>2nd E1<br>WAN - 121.97.74.126/30<br>LAN - 121.96.17.64/26<br>======================<br></div>Can you confirm with your ISP as to how they setup routing redundancy on their end? This is a requirement to make sure that your network design matches the ISP network design.<br><br>One thing you need to confirm is following. Would any of the LAN subnet be reachable via any WAN circuit? Is the 121.96.27.0/26 subnet reachable only via 202.78.78.252/30? Or is the 121.96.27.0/26 subnet also reachable via 121.97.74.124/30? The same question goes to the 2nd 121.96.17.64/26 LAN subnet.<br><br>If all LAN subnets are reachable via any WAN circuit, then the next question is following. Is there any preference as to which WAN circuit to take to reach any LAN subnet or specific LAN subnet? Or is it just equal-cost routing to reach any or specific LAN subnet?<br><br>I also notice that you are doing static routes with your ISP. Is there a reason why you don't run dynamic routing such as BGP with your ISP?]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20799022</guid>
<pubDate>Wed, 16 Jul 2008 08:49:50 EDT</pubDate>
</item>

<item>
<title>Re: [HELP] Help with Cisco Nat</title>
<link>http://www.dslreports.com/forum/remark,20798604</link>
<description><![CDATA[<A HREF="/useremail/u/1566346"><b>zhrike</b></A> : @ryo504<br><br>I've already done a lot of testing on the router. Even formatting the router and putting a new ios version, but still no luck with it.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20798604</guid>
<pubDate>Wed, 16 Jul 2008 04:10:42 EDT</pubDate>
</item>

<item>
<title>Re: [HELP] Help with Cisco Nat</title>
<link>http://www.dslreports.com/forum/remark,20798602</link>
<description><![CDATA[<A HREF="/useremail/u/1566346"><b>zhrike</b></A> : @chris123<br><br>Yes I have 2 E1 connections with the same ISP.<br><br>ip address 192.168.0.2 255.255.255.0 secondary - to setup router locally<br>ip address 121.96.27.129 255.255.255.192 secondary - these are ISP given Lan IP's<br>ip address 121.96.17.65 255.255.255.192 - these are ISP given Lan IP's]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20798602</guid>
<pubDate>Wed, 16 Jul 2008 04:09:28 EDT</pubDate>
</item>

<item>
<title>Re: [HELP] Help with Cisco Nat</title>
<link>http://www.dslreports.com/forum/remark,20798591</link>
<description><![CDATA[<A HREF="/useremail/u/1566346"><b>zhrike</b></A> : @aryoba<br><br>This is the Original IP's given by our ISP.<br>Because we actually have (2) E1 2MB Connections from the same ISP. We aggregated it to make it up to 4MB Connection.<br><br>======================<br>1st E1<br>WAN - 202.78.78.254/30<br>LAN - 121.96.27.28/26<br>======================<br>======================<br>2nd E1<br>WAN - 121.97.74.126/30<br>LAN - 121.96.17.64/26<br>======================<br><br>Can you help me on that setup? Because all I need to do<br>is to translate the <b>Server's</b> ip to any 121.96.17.6x ip's as long as users from outside access it's services and<br>the inside users can still access it from the same network.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20798591</guid>
<pubDate>Wed, 16 Jul 2008 03:59:22 EDT</pubDate>
</item>

<item>
<title>Re: [HELP] Help with Cisco Nat</title>
<link>http://www.dslreports.com/forum/remark,20798022</link>
<description><![CDATA[<A HREF="/useremail/u/275712"><b>ryo504</b></A> : yeah it looks like he is doing dual isp<br><br>also do you need a clock rate on your serial connections? and also you can try to connect one isp first<br><small>--<br>Ryo Studios Inc.</small>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20798022</guid>
<pubDate>Wed, 16 Jul 2008 00:03:02 EDT</pubDate>
</item>

<item>
<title>Re: [HELP] Help with Cisco Nat</title>
<link>http://www.dslreports.com/forum/remark,20796130</link>
<description><![CDATA[<A HREF="/useremail/u/662654"><b>chris123</b></A> : Why are these here?<br><br>ip address 192.168.0.2 255.255.255.0 secondary<br>ip address 121.96.27.129 255.255.255.192 secondary<br>ip address 121.96.17.65 255.255.255.192<br><br>Do you have 1 or 2 connections to the isp?  <br><small>--<br>see my SBC Review @ &raquo;<A HREF="/comment/555/34220">Review of AT&T Midwest by chris123</A></small>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20796130</guid>
<pubDate>Tue, 15 Jul 2008 18:02:26 EDT</pubDate>
</item>

<item>
<title>Re: [HELP] Help with Cisco Nat</title>
<link>http://www.dslreports.com/forum/remark,20795416</link>
<description><![CDATA[<A HREF="/useremail/u/275712"><b>ryo504</b></A> : i found your problem<br><br>ip route 0.0.0.0 0.0.0.0 Serial0/0/0<br>ip route 0.0.0.0 0.0.0.0 Serial0/1/0<br><br>you need set your gateway ip here, some how i had problems setting my outside as an interface, if you don't know your gateway, subnet your outside ip, and pink the first available ip address and see if you get a reply, you shouldn't worry about the gateway address changing.<br><small>--<br>Ryo Studios Inc.</small>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20795416</guid>
<pubDate>Tue, 15 Jul 2008 15:45:40 EDT</pubDate>
</item>

<item>
<title>Re: [HELP] Help with Cisco Nat</title>
<link>http://www.dslreports.com/forum/remark,20794542</link>
<description><![CDATA[<A HREF="/useremail/u/676954"><b>aryoba</b></A> : I notice there are some changes on your router configuration. Original post contains 121.96.27.64/26 and 121.96.17.0/26 subnets as the LANs; and 202.78.78.204/30 and 121.97.74.104/30 subnets as the WANs. But then on later router configuration, there are 121.96.27.128/26 and 121.96.17.64/26 subnets as the LANs; and 202.78.78.254/30 and 121.97.74.124/30 subnets as the WAN.<br><br>Which ones are you using?]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20794542</guid>
<pubDate>Tue, 15 Jul 2008 12:47:57 EDT</pubDate>
</item>

<item>
<title>Re: [HELP] Help with Cisco Nat</title>
<link>http://www.dslreports.com/forum/remark,20793733</link>
<description><![CDATA[<A HREF="/useremail/u/0"><b>anon</b></A> : Okay i'll gonna specify each machine configurations in details...<br><br><b>Server Setup</b><br>OS     : Windows Server 2003 SP2 R2<br>AD/DC  : No<br>DNS    : No<br>DHCP   : No<br>FTP    : Yes<br>WWW    : Yes<br>RDC    : Yes<br>IP     : 192.168.0.5<br>Subnet : 255.255.255.0<br>Gateway: 192.168.0.2<br><br><b>Workstations Setup</b><br>OS     : Windows XP Professional SP2<br>IP     : 192.168.0.50 - 192.168.0.100<br>Subnet : 255.255.255.0<br>Gateway: 192.168.0.2<br><br><b>Router Setup</b><br><br>version 12.4<br>service timestamps debug datetime msec<br>service timestamps log datetime msec<br>service password-encryption<br>!<br>hostname Router<br>!<br>boot-start-marker<br>boot-end-marker<br>!<br>no logging buffered<br>enable secret 5 *****<br>enable password 7 *****<br>!<br>no aaa new-model<br>!<br>resource policy<br>!<br>mmi polling-interval 60<br>no mmi auto-configure<br>no mmi pvc<br>mmi snmp-timeout 180<br>ip subnet-zero<br>ip cef<br>!<br>!<br>no ip dhcp use vrf connected<br>ip dhcp excluded-address 192.168.0.0 192.168.0.200<br>!<br>ip dhcp pool dhcp1<br>   network 192.168.0.0 255.255.255.0<br>   default-router 192.168.0.2<br>   dns-server 203.115.130.8 210.4.2.61<br>!<br>!<br>no ip ips deny-action ips-interface<br>ip domain name *****.com<br>ip name-server 203.115.130.8<br>ip name-server 210.4.2.61<br>!<br>!<br>!<br>!<br>username ***** privilege 15 password 7 *****<br>!<br>!<br>!<br>!<br>!<br>interface FastEthernet0/0<br> description Interface-Facing-Servers<br> no ip address<br> ip nat inside<br> ip virtual-reassembly<br> ip route-cache flow<br> shutdown<br> duplex auto<br> speed auto<br>!<br>interface FastEthernet0/1<br> description Interface-Facing-Users<br> ip address 192.168.0.2 255.255.255.0 secondary<br> ip address 121.96.27.129 255.255.255.192 secondary<br> ip address 121.96.17.65 255.255.255.192<br> ip access-group 50 out<br> ip nat inside<br> ip virtual-reassembly<br> ip route-cache flow<br> speed auto<br> full-duplex<br> no mop enabled<br>!<br>interface Serial0/0/0<br> description Interface-Facing-ISP<br> ip address 202.78.78.254 255.255.255.252<br> ip load-sharing per-packet<br> ip nat outside<br> ip virtual-reassembly<br> ip route-cache flow<br>!<br>interface Serial0/0/1<br> no ip address<br> shutdown<br> clock rate 2000000<br>!<br>interface Serial0/1/0<br> description Interface-Facing-ISP<br> ip address 121.97.74.126 255.255.255.252<br> ip load-sharing per-packet<br> ip nat outside<br> ip virtual-reassembly<br> ip route-cache flow<br>!<br>ip classless<br>ip route 0.0.0.0 0.0.0.0 Serial0/0/0<br>ip route 0.0.0.0 0.0.0.0 Serial0/1/0<br>!<br>no ip http server<br>no ip http secure-server<br>ip nat inside source list 1 interface FastEthernet0/1 overload<br>!<br>access-list 1 permit 192.168.0.0 0.0.0.255<br>access-list 50 deny   209.11.168.114<br>access-list 50 deny   209.11.168.115<br>access-list 50 deny   209.11.168.112<br>access-list 50 deny   209.11.168.113<br>access-list 50 deny   209.11.168.118<br>access-list 50 deny   68.142.214.24<br>access-list 50 deny   209.11.168.119<br>access-list 50 deny   209.11.168.116<br>access-list 50 deny   209.11.168.117<br>access-list 50 deny   209.11.168.122<br>access-list 50 deny   209.11.168.123<br>access-list 50 deny   209.11.168.120<br>access-list 50 deny   209.11.168.121<br>access-list 50 deny   208.117.236.69<br>access-list 50 deny   209.11.168.126<br>access-list 50 deny   209.11.168.127<br>access-list 50 deny   209.11.168.124<br>access-list 50 deny   209.11.168.125<br>access-list 50 deny   209.11.168.110<br>access-list 50 deny   209.11.168.111<br>access-list 50 deny   216.178.38.104<br>access-list 50 deny   69.63.176.140<br>access-list 50 deny   209.17.70.11<br>access-list 50 deny   202.78.87.74<br>access-list 50 deny   212.187.229.17<br>access-list 50 deny   64.154.80.72<br>access-list 50 deny   69.63.178.11<br>access-list 50 deny   66.246.179.202<br>access-list 50 deny   216.178.38.131<br>access-list 50 deny   208.65.153.238<br>access-list 50 deny   209.11.168.130<br>access-list 50 deny   209.11.168.128<br>access-list 50 deny   208.65.153.250<br>access-list 50 deny   208.65.153.251<br>access-list 50 deny   209.11.168.129<br>access-list 50 deny   208.65.153.252<br>access-list 50 deny   208.65.153.253<br>access-list 50 deny   208.65.153.254<br>access-list 50 deny   208.65.153.255<br>access-list 50 deny   64.56.205.72<br>access-list 50 permit any<br>!<br>!<br>control-plane<br>!<br>!<br>line con 0<br>line aux 0<br>line vty 0 4<br> exec-timeout 180 0<br> privilege level 15<br> password 7 *****<br> login local<br> transport input telnet<br>!<br>end<br><br>===========================================================<br><br>The <b>Server</b> is on the same network block as the workstations and all of 192.168 ip's are being translated into 121.96.17.65 ip. but i want the <b>Server</b> to have it's own translated address like 121.96.17.66 which we had purchased, but everytime i translated it, i can't connect to it.<br><br>ip nat inside source tcp 192.168.0.5 3389 121.96.17.66 3389 // for Remote Desktop Connection<br>ip nat inside source tcp 192.168.0.5 80 121.96.17.66 80 // for HTTP Server<br>ip nat inside source tcp 192.168.0.5 21 121.96.17.66 21 // for FTP Server<br><br>I haven't got nothing on those commands. Was I forgotten something? can you help me on this?]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20793733</guid>
<pubDate>Tue, 15 Jul 2008 10:00:07 EDT</pubDate>
</item>

<item>
<title>Re: [HELP] Help with Cisco Nat</title>
<link>http://www.dslreports.com/forum/remark,20793509</link>
<description><![CDATA[<A HREF="/useremail/u/676954"><b>aryoba</b></A> : Where is the 172.16.0.5 IP address terminated or defined? Should the FastEthernet0/0 interface IP address be 172.16.0.1/24 or something?<br><br>From your configuration, I don't see the 172.16.0.5 IP address defined or terminated anywhere. If the router can't see the IP address on its routing table, then yes as you realize already there will be communication problem with other machines.  ]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20793509</guid>
<pubDate>Tue, 15 Jul 2008 09:05:00 EDT</pubDate>
</item>

<item>
<title>Re: [HELP] Help with Cisco Nat</title>
<link>http://www.dslreports.com/forum/remark,20793156</link>
<description><![CDATA[<A HREF="/useremail/u/0"><b>anon</b></A> : Actually this is the setup of my router. I've changed my IP for some reason.<br><br>===========================================================================<br>interface FastEthernet0/0<br> description Interface-Facing-Servers<br> no ip address<br> ip nat inside<br> ip virtual-reassembly<br> ip route-cache flow<br> shutdown<br> duplex auto<br> speed auto<br>!<br>interface FastEthernet0/1<br> description Interface-Facing-Users<br> ip address 192.168.0.2 255.255.255.0 secondary<br> ip address 121.96.27.129 255.255.255.192 secondary<br> ip address 121.96.17.65 255.255.255.192<br> ip access-group 50 out<br> ip nat inside<br> ip virtual-reassembly<br> ip route-cache flow<br> speed auto<br> full-duplex<br> no mop enabled<br>!<br>interface Serial0/0/0<br> description Interface-Facing-Bayantel<br> ip address 202.78.78.254 255.255.255.252<br> ip load-sharing per-packet<br> ip nat outside<br> ip virtual-reassembly<br> ip route-cache flow<br>!<br>interface Serial0/0/1<br> no ip address<br> shutdown<br> clock rate 2000000<br>!<br>interface Serial0/1/0<br> description Interface-Facing-Bayantel<br> ip address 121.97.74.126 255.255.255.252<br> ip load-sharing per-packet<br> ip nat outside<br> ip virtual-reassembly<br> ip route-cache flow<br>!<br>ip classless<br>ip route 0.0.0.0 0.0.0.0 Serial0/0/0<br>ip route 0.0.0.0 0.0.0.0 Serial0/1/0<br>!<br>no ip http server<br>no ip http secure-server<br>ip nat inside source list 1 interface FastEthernet0/1 overload<br>===========================================================================<br><br>i've tried staticly puting the server as 172.16.0.5 but it cant communicate through other Lan PC's. i want to setup the server to be able to communicate locally and globally.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20793156</guid>
<pubDate>Tue, 15 Jul 2008 06:06:43 EDT</pubDate>
</item>

<item>
<title>Re: [HELP] Help with Cisco Nat</title>
<link>http://www.dslreports.com/forum/remark,20788391</link>
<description><![CDATA[<A HREF="/useremail/u/676954"><b>aryoba</b></A> : My guess is that one of the problem is the following configuration.<br><br>interface FastEthernet0/1<br>description Interface-Facing-Users<br>ip address 192.168.0.2 255.255.255.0 secondary<br>ip address 121.96.27.109 255.255.255.192 secondary<br>ip address 121.96.17.5 255.255.255.192<br>ip access-group 50 out<br>ip nat inside<br>ip virtual-reassembly<br>ip route-cache flow<br>speed auto<br>full-duplex<br>no mop enabled<br><br>Another problem is the following<br><br>ip nat inside source list 1 interface FastEthernet0/1 overload<br><br>However the biggest problem is probably the network design itself.<br><br>One way to solve is to setup a new Private IP Subnet (i.e. 172.16.0.0/24) under the FastEthernet0/0 interface as the server subnet. This server subnet then has NAT association with the 121.96.17.0/26. You can keep the 192.168.0.0/24 subnet to associate only with the 121.96.27.0/26 subnet.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20788391</guid>
<pubDate>Mon, 14 Jul 2008 10:19:27 EDT</pubDate>
</item>

<item>
<title>[HELP] Help with Cisco Nat</title>
<link>http://www.dslreports.com/forum/remark,20788140</link>
<description><![CDATA[<A HREF="/useremail/u/0"><b>anon</b></A> : Hello Guys... Hope you can help me with this one...<br><br>I've been doing some search and test on my Cisco router but it doesnt seem to work... and i'm very exhausted at this one...<br>i have a server (Win Server 2003 SP2) which is running remote desktop, http server & ftp server. and it's ip address is 192.168.0.5. and i want it to be translated with 121.96.17.70 which i had purchased. but everytime i tried connecting it, it keeps getting errors like, cant connect to remote computer blah blah blah...<br>what could be wrong with this? and i even disabled firewall on it just to make sure, but nothing happened. hope somebody can help me with this.<br>here is my config<br><br>Building configuration...<br><br>Current configuration : 3318 bytes<br>!<br>version 12.4<br>service timestamps debug datetime msec<br>service timestamps log datetime msec<br>service password-encryption<br>!<br>hostname U-MainRouter<br>!<br>boot-start-marker<br>boot-end-marker<br>!<br>no logging buffered<br>enable secret 5 **********<br>enable password 7 **********<br>!<br>no aaa new-model<br>!<br>resource policy<br>!<br>mmi polling-interval 60<br>no mmi auto-configure<br>no mmi pvc<br>mmi snmp-timeout 180<br>ip subnet-zero<br>ip cef<br>!<br>!<br>no ip dhcp use vrf connected<br>ip dhcp excluded-address 192.168.0.0 192.168.0.200<br>!<br>ip dhcp pool dhcp1<br>network 192.168.0.0 255.255.255.0<br>default-router 192.168.0.2<br>dns-server 203.115.130.8 210.4.2.61<br>!<br>!<br>no ip ips deny-action ips-interface<br>ip domain name yourdomain.com<br>ip name-server 203.115.130.8<br>ip name-server 210.4.2.61<br>!<br>!<br>!<br>!<br>username test privilege 15 password 7 **********<br>!<br>!<br>!<br>!<br>!<br>interface FastEthernet0/0<br>no ip address<br>shutdown<br>duplex auto<br>speed auto<br>!<br>interface FastEthernet0/1<br>description Interface-Facing-Users<br>ip address 192.168.0.2 255.255.255.0 secondary<br>ip address 121.96.27.109 255.255.255.192 secondary<br>ip address 121.96.17.5 255.255.255.192<br>ip access-group 50 out<br>ip nat inside<br>ip virtual-reassembly<br>ip route-cache flow<br>speed auto<br>full-duplex<br>no mop enabled<br>!<br>interface Serial0/0/0<br>description Interface-Facing-ISP<br>ip address 202.78.78.204 255.255.255.252<br>ip load-sharing per-packet<br>ip nat outside<br>ip virtual-reassembly<br>ip route-cache flow<br>!<br>interface Serial0/0/1<br>no ip address<br>shutdown<br>clock rate 2000000<br>!<br>interface Serial0/1/0<br>description Interface-Facing-ISP<br>ip address 121.97.74.106 255.255.255.252<br>ip load-sharing per-packet<br>ip nat outside<br>ip virtual-reassembly<br>ip route-cache flow<br>!<br>router rip<br>version 2<br>redistribute connected<br>network 121.0.0.0<br>network 192.168.0.0<br>no auto-summary<br>!<br>ip classless<br>ip route 0.0.0.0 0.0.0.0 Serial0/0/0<br>ip route 0.0.0.0 0.0.0.0 Serial0/1/0<br>!<br>no ip http server<br>no ip http secure-server<br>ip nat inside source list 1 interface FastEthernet0/1 overload<br>ip nat inside source static tcp 192.168.0.5 21 121.96.17.70 21 extendable<br>ip nat inside source static tcp 192.168.0.5 80 121.96.17.70 80 extendable<br>ip nat inside source static tcp 192.168.0.5 3389 121.96.17.70 3389 extendable<br>!<br>access-list 1 permit 192.168.0.0 0.0.0.255<br>access-list 50 deny 209.11.168.114 -- these are youtube's and<br>access-list 50 deny 209.11.168.115 and friendster addresses.<br>access-list 50 deny 209.11.168.112<br>access-list 50 deny 209.11.168.113<br>access-list 50 deny 209.11.168.118<br>access-list 50 deny 209.11.168.119<br>access-list 50 deny 209.11.168.116<br>access-list 50 deny 209.11.168.117<br>access-list 50 deny 209.11.168.122<br>access-list 50 deny 209.11.168.123<br>access-list 50 deny 209.11.168.120<br>access-list 50 deny 209.11.168.121<br>access-list 50 deny 208.117.236.69<br>access-list 50 deny 209.11.168.126<br>access-list 50 deny 209.11.168.127<br>access-list 50 deny 209.11.168.124<br>access-list 50 deny 209.11.168.125<br>access-list 50 deny 209.11.168.110<br>access-list 50 deny 209.11.168.111<br>access-list 50 deny 208.65.153.238<br>access-list 50 deny 209.11.168.130<br>access-list 50 deny 209.11.168.128<br>access-list 50 deny 208.65.153.250<br>access-list 50 deny 208.65.153.251<br>access-list 50 deny 209.11.168.129<br>access-list 50 deny 208.65.153.252<br>access-list 50 deny 208.65.153.253<br>access-list 50 deny 208.65.153.254<br>access-list 50 deny 208.65.153.255<br>access-list 50 permit any<br>!<br>!<br>control-plane<br>!<br>!<br>line con 0<br>line aux 0<br>line vty 0 4<br>exec-timeout 180 0<br>privilege level 15<br>password 7 **********<br>login local<br>transport input telnet<br>!<br>end<br><br>waiting for your reply... thanks]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20788140</guid>
<pubDate>Mon, 14 Jul 2008 09:27:19 EDT</pubDate>
</item>

</channel>
</rss>
