Louis
2013-04-12 11:49:11 UTC
- 2 Routers, 1 for my private network and 1 for my ISP (Private Router & ISP)
- Public Address as 200.0.0.0 /28
- fa0/0 of Private Router, I have my private network with a switch that is providing VLANs -
VLAN 10 192.168.2.0 /25
VLAN 20 192.168.2.128 /25
VLAN 30 192.168.3.0 /29
- VLAN 10 and VLAN 20 are DHCP configured from the Private Router
- VLAN 30 is statically IP configured with a server attached to it.
So what I need is my web server is to access the ISP and vice versa so a private and public address. My addressing schema is:
ISP se0/0/0 200.0.0.10 /30
Private Router se0/0/1 200.0.0.9 /30 & fa0/1 VLANs Default Gateway
Server - Public Address 200.0.0.13 - Private Address 192.168.3.13
I am able to ping from all VLANs to the Private router but anything on the other side of the router to the ISP it fails.
So according to the Cisco commands I followed I did the following:
ISP(config)#ip route 200.0.0.0 255.255.255.248 serial 0/0/0
Private Router(config)#ip route 0.0.0.0 0.0.0.0 200.0.0.10
Private Router(config)#router ospf 1
Private Router(config-router)#default-information originate
Private Router(config)#ip nat inside source static 192.168.3.13 200.0.0.13
Private Router(config)#interface serial 0/0/1
Private Router(config-if)#ip nat outside
Private Router(config-if)#interface fa0/1
Private Router(config-if)#ip nat inside
According to Cisco I should be able to ping my ISP router to my server inside my Private Network and vice versa but for me it fails everytime. I tried adding access list too but this also lead to unsuccessful ping. Can someone please help? I just cannot seem to get past final phase of the lab sheet. Any reply would be greatly appreciated. Thank you