Gerald,
Thanks for the response. I don't think it helped my routing issue at
all (I'm still testing), but boy howdy did it affect our network
speed!! Everyone had been complaining about the speed of this new
10mb pipe, but as soon as I made the changes you recommended, network
speed went off the chart! I may still have problems with that fourth
Class C, but right now no one is noticing. Thanks for making my life
at least somewhat better!
By the way, with our old ISP, I was able to use a subnet mask of
255.255.252.0 (the range was xx.xx.124 - xx.xx.127), but it appears I
am unable to use the same with these new addresses. They are
contiguous, but whenever I check a subnet calculator , it tries to
include xxx.xxx.204.xxx. Is that possibly where my routing problem is
originating?
I hadn't planned on becoming Cisco certified, but it looks like I may
not have a choice.
Rick
On Wed, 25 Oct 2006 19:52:53 +0200, Gerald Krause <news->
wrote:
>Rick Bruner schrieb:
>> ip route 0.0.0.0 0.0.0.0 FastEthernet0/0
>
>Ouch, direct ethernet route
. You should use
>
> ip route 0.0.0.0 0.0.0.0 x.x.x.x
>
>instead, where "x.x.x.x" is the IP address of the other end of our
>FastEthernet0/0 link (your default gateway). If your config works, your
>ISP seems to have proxy-arp enabled but this is not a good solution in
>my opinion. I avoid such setups strictly.
>
>> ip route xxx.xxx.206.0 255.255.255.0 FastEthernet0/0
>> ip route xxx.xxx.207.0 255.255.255.0 FastEthernet0/0
>> ip route xxx.xxx.208.0 255.255.255.0 FastEthernet0/0
>
>Ouch again, much more direct ethernet routes
. You should remove this
>part because:
>
>a) "FastEthernet0/0" seems to be the wrong direction, because your /24s
>resides behind "FastEthernet0/1" ?
>
>b) those extra route configurations are superfluous because your cisco
>knows the networks already due to the "interface" configuration before
>
>I don't know if this will solve your ftp/webserver problem at all, but
>it may be a beginning.