Basic Routing question

Basic Routing question

NewsGroups | Search | Tools
 comp.dcom.sys.cisco  Post an article  get this group's latest topics as an RSS feed add this group's latest topics to your My MSN content add this group's latest topics to your My Yahoo content  add this group's latest topics to your Google content  YahooMyWeb Yahoo!  Google Google  Windows Live Favorites Windows Live  del.icio.us del.icio.us  digg digg  Add to Netscape Netscape
Subject Author Date
Basic Routing question coffin 12-05-2004
Posted by on December 5, 2004, 7:52 am
If you were  Registered and logged in, you could reply and use other advanced thread options
I have 2 configs here

RouterA

Building configuration...

Current configuration : 568 bytes
!
version 12.2
service config
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname routerA
!
!
ip subnet-zero
!
!
!
!
interface FastEthernet0
ip address 192.168.1.252 255.255.255.0
speed auto
!
interface Serial0
ip address 10.53.1.1 255.255.255.252
encapsulation ppp
!
router eigrp 2575
redistribute static
network 10.0.0.0
auto-summary
no eigrp log-neighbor-changes
!
ip classless
ip route 0.0.0.0 0.0.0.0 192.168.1.254
no ip http server
!
!
!
line con 0
line aux 0
line vty 0 4
!
no scheduler allocate
end

This network has 192.168.1.0 lan behind the ethernet port and a
gateway (PIX) of 192.168.1.254

Now for the next config:
RouterB

Building configuration...

Current configuration : 650 bytes
!
version 12.1
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname routerB
!
!
!
!
!
!
memory-size iomem 25
ip subnet-zero
!
!
!
!
interface Serial0
ip address 10.53.1.2 255.255.255.252
encapsulation ppp
no fair-queue
!
interface FastEthernet0
ip address 10.3.1.1 255.255.0.0
speed auto
!
router eigrp 2575
redistribute static
network 10.0.0.0
auto-summary
no eigrp log-neighbor-changes
!
ip classless
ip route 0.0.0.0 0.0.0.0 10.53.1.1
no ip http server
!
!
line con 0
password test
login
transport input none
line aux 0
line vty 0 4
password test
login
!
no scheduler allocate
end

Basically my problem is this.

From routerB lan i can ping the internet fine via ip. I cannot however
ping routerA LAN or any computers on that LAN. How do i route into
RouterA LAN so that the stuff on RouterB LAN can access the server /
resources on RouterA LAN?

It has to be pretty easy but i cant seem to get it. I have a bunch
other locations via point to point that will be configured the same
way and needing access to routerA LAN for DNS and server resources in
the future.

Im thinking this is a NAT Issue, but am not sure how to resolve it.
Would i run the NAT at the pix or on my routerA? It would seem that
my Router A would be the best choice.

Any input would be apreciated.

Thanks


Posted by Toby on December 5, 2004, 6:24 pm
If you were  Registered and logged in, you could reply and use other advanced thread options

>I have 2 configs here
>
> RouterA
>
> Building configuration...
>
> Current configuration : 568 bytes
> !
> version 12.2
> service config
> service timestamps debug uptime
> service timestamps log uptime
> no service password-encryption
> !
> hostname routerA
> !
> !
> ip subnet-zero
> !
> !
> !
> !
> interface FastEthernet0
> ip address 192.168.1.252 255.255.255.0
> speed auto
> !
> interface Serial0
> ip address 10.53.1.1 255.255.255.252
> encapsulation ppp
> !
> router eigrp 2575
> redistribute static
> network 10.0.0.0
> auto-summary
> no eigrp log-neighbor-changes
> !
> ip classless
> ip route 0.0.0.0 0.0.0.0 192.168.1.254
> no ip http server
> !
> !
> !
> line con 0
> line aux 0
> line vty 0 4
> !
> no scheduler allocate
> end
>
> This network has 192.168.1.0 lan behind the ethernet port and a
> gateway (PIX) of 192.168.1.254
>
> Now for the next config:
> RouterB
>
> Building configuration...
>
> Current configuration : 650 bytes
> !
> version 12.1
> service timestamps debug uptime
> service timestamps log uptime
> no service password-encryption
> !
> hostname routerB
> !
> !
> !
> !
> !
> !
> memory-size iomem 25
> ip subnet-zero
> !
> !
> !
> !
> interface Serial0
> ip address 10.53.1.2 255.255.255.252
> encapsulation ppp
> no fair-queue
> !
> interface FastEthernet0
> ip address 10.3.1.1 255.255.0.0
> speed auto
> !
> router eigrp 2575
> redistribute static
> network 10.0.0.0
> auto-summary
> no eigrp log-neighbor-changes
> !
> ip classless
> ip route 0.0.0.0 0.0.0.0 10.53.1.1
> no ip http server
> !
> !
> line con 0
> password test
> login
> transport input none
> line aux 0
> line vty 0 4
> password test
> login
> !
> no scheduler allocate
> end
>
> Basically my problem is this.
>
> From routerB lan i can ping the internet fine via ip. I cannot however
> ping routerA LAN or any computers on that LAN. How do i route into
> RouterA LAN so that the stuff on RouterB LAN can access the server /
> resources on RouterA LAN?
>
> It has to be pretty easy but i cant seem to get it. I have a bunch
> other locations via point to point that will be configured the same
> way and needing access to routerA LAN for DNS and server resources in
> the future.
>
> Im thinking this is a NAT Issue, but am not sure how to resolve it.
> Would i run the NAT at the pix or on my routerA? It would seem that
> my Router A would be the best choice.
>
> Any input would be apreciated.
>
> Thanks

The LAN on Router A is a 192.168.1.0/24 bit address and the only way to
reach it from Router B is either by a static route or EIGRP.
Your EIGRP network will not advertise this judging from your current config.
Try adding the Network statement for 192.168.1.0 on router A. Also if you
have omited this because you don't want EIGRP to advertise routes over the
Ethernet port use the passive interface FA0 within your router EIGRP portion
of the config.

Regards

Toby




Posted by Toby on December 5, 2004, 6:47 pm
If you were  Registered and logged in, you could reply and use other advanced thread options

>I have 2 configs here
>
> RouterA
>
> Building configuration...
>
> Current configuration : 568 bytes
> !
> version 12.2
> service config
> service timestamps debug uptime
> service timestamps log uptime
> no service password-encryption
> !
> hostname routerA
> !
> !
> ip subnet-zero
> !
> !
> !
> !
> interface FastEthernet0
> ip address 192.168.1.252 255.255.255.0
> speed auto
> !
> interface Serial0
> ip address 10.53.1.1 255.255.255.252
> encapsulation ppp
> !
> router eigrp 2575
> redistribute static
> network 10.0.0.0
> auto-summary
> no eigrp log-neighbor-changes
> !
> ip classless
> ip route 0.0.0.0 0.0.0.0 192.168.1.254
> no ip http server
> !
> !
> !
> line con 0
> line aux 0
> line vty 0 4
> !
> no scheduler allocate
> end
>
> This network has 192.168.1.0 lan behind the ethernet port and a
> gateway (PIX) of 192.168.1.254
>
> Now for the next config:
> RouterB
>
> Building configuration...
>
> Current configuration : 650 bytes
> !
> version 12.1
> service timestamps debug uptime
> service timestamps log uptime
> no service password-encryption
> !
> hostname routerB
> !
> !
> !
> !
> !
> !
> memory-size iomem 25
> ip subnet-zero
> !
> !
> !
> !
> interface Serial0
> ip address 10.53.1.2 255.255.255.252
> encapsulation ppp
> no fair-queue
> !
> interface FastEthernet0
> ip address 10.3.1.1 255.255.0.0
> speed auto
> !
> router eigrp 2575
> redistribute static
> network 10.0.0.0
> auto-summary
> no eigrp log-neighbor-changes
> !
> ip classless
> ip route 0.0.0.0 0.0.0.0 10.53.1.1
> no ip http server
> !
> !
> line con 0
> password test
> login
> transport input none
> line aux 0
> line vty 0 4
> password test
> login
> !
> no scheduler allocate
> end
>
> Basically my problem is this.
>
> From routerB lan i can ping the internet fine via ip. I cannot however
> ping routerA LAN or any computers on that LAN. How do i route into
> RouterA LAN so that the stuff on RouterB LAN can access the server /
> resources on RouterA LAN?
>
> It has to be pretty easy but i cant seem to get it. I have a bunch
> other locations via point to point that will be configured the same
> way and needing access to routerA LAN for DNS and server resources in
> the future.
>
> Im thinking this is a NAT Issue, but am not sure how to resolve it.
> Would i run the NAT at the pix or on my routerA? It would seem that
> my Router A would be the best choice.
>
> Any input would be apreciated.
>
> Thanks

As for your other question. You should really do the NAT function on the PIX
so that your LAN off router A is not in the DMZ.

Toby




Posted by Barry Margolin on December 5, 2004, 9:51 pm
If you were  Registered and logged in, you could reply and use other advanced thread options
coffin@isd.net wrote:

> I have 2 configs here

How many different threads are you going to start? Pick one thread and
stick with it, please.

--
Barry Margolin, barmar@alum.mit.edu
Arlington, MA
*** PLEASE post questions in newsgroups, not directly to me ***


Similar ThreadsPosted
Basic Routing question June 21, 2005, 2:37 pm
Basic Routing issue August 1, 2006, 1:51 pm
cisco1711 & vlans: basic routing issue... July 23, 2004, 6:24 pm
Basic IOS question September 6, 2005, 9:03 pm
VRF basic question. September 4, 2006, 12:02 pm
Cisco Pix 501 basic VPN question February 11, 2005, 5:25 pm
Basic VLAN question. June 27, 2005, 4:21 pm
basic ospf question! May 13, 2006, 3:54 pm
basic vlan pix 6.3 question July 25, 2006, 2:26 am
basic nonat question pix September 6, 2006, 4:37 am

other useful resources:
The Federal Communications Commission (FCC)
Telecommunications Industry Association
Electronic and Software Security Products and Services
International Telecommunication Union

Custom CGI Perl and PHP programming by 1-Script.com

Contact Us | Privacy Policy
The site map in XML format XML site map