Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Simple Routing Problem !

Status
Not open for further replies.

khaand

IS-IT--Management
Mar 17, 2003
4
0
0
GB
I have a Cisco 2600 configured for IP and Appletalk, Appletalk is bridged between the two ethernet interfaces and working fine.

The problem is getting IP to route across the the two interfaces eth0/0 eth0/1, there are two subnets 10.3.0.0/16 and 192.168.0.0/24.
I have set two static routes one for each subnet and a last gateway but still no joy....
There must be something obvious I have missed, can you help ???
 
You shouldn't need any static routes or gateways.

If you configure the ethernet interfaces correctly the router will have them as connected subnets in the routing table. The router will route between all connected interfaces even without a routing protocol.
Assuming you setup your PCs, Servers etc with the correct default gateway/mask etc there should be no special config.

Cheers

Mark
 
Here's acopy of the config, the Pc's etc are 100% correct

WRC-HAM-CDM>en
Password:
WRC-HAM-CDM#sh run
Building configuration...

Current configuration : 775 bytes
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname "WRC-HAM-CDM"
!
enable secret 5
enable password
ip subnet-zero
!
!
!
appletalk routing
!
bridge crb
!
!
interface FastEthernet0/0
ip address 192.168.0.254 255.255.255.0
speed auto
half-duplex
no mop enabled
bridge-group 1
!
interface FastEthernet0/1
ip address 10.3.0.100 255.255.0.0
duplex auto
speed auto
bridge-group 1
!
ip classless
ip route 0.0.0.0 0.0.0.0 192.168.0.1
ip route 10.3.0.0 255.255.0.0 FastEthernet0/1
ip route 192.168.0.0 255.255.255.0 FastEthernet0/0
ip http server
!
bridge 1 protocol ieee
bridge 1 route ip
!
line con 0
line aux 0
line vty 0 4
password rappcollins
login
!
end

 
Since this is a multi-protocol ios code, you might try to make sure IP routing is enabled..

type in this command at the main config level "ip routing"

also, do a "sh ip route" to make sure the routes are in the table..


BuckWeet
 
Thanks
IP routing is enabled and the routes are showing in the routing table.
Someone has told me that in maybe a problem with spanning tree and the Appletalk bridging ?

Andy
 
I have also noticed the following message when debug is turned on, i don't seem to find an explaination on the internet

STP: opt: Bridge group 1: get ports: no free chunk available

thx Andy
 
Have you tried taking the "bridge 1 route ip" command? I personally have never seen this command used when I've seen bridging implemented.. But then again, I've only seen bridging done a few times.. My experience is almost all IP, and bridging is hardly used in that world..

BuckWeet
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top