|
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
|