In article <(E-Mail Removed) .com>,
w.kinderman wrote:
>Here is my routing table. Maybe i am doing something wrong.
Yes
>Kernel IP routing table
>Destination Gateway Genmask Flags Metric Ref Use Iface
>my.website.com 172.16.62.1 255.255.255.255 UGH 0 0 0 eth1
OK - this is saying that your 'my.website.com' is on some other network,
and can be reached by sending the packets to 172.16.62.1 who will then
forward them. Does 172.16.62.1 know how to reach "my.website.com"? Does
"my.website.com" know to use the other interface of 172.16.62.1 to send
packets back to here? Does 172.16.62.1 know to send packets here for the
192.x and 10.16.x networks?
>192.168.1.0 * 255.255.255.0 U 0 0 0 eth2
>10.16.60.0 * 255.255.254.0 U 0 0 0 eth0
>loopback localhost 255.0.0.0 UG 0 0 0 lo
OK
>default 172.16.62.1 0.0.0.0 UG 0 0 0 eth1
>default 10.16.60.1 0.0.0.0 UG 0 0 0 eth0
Here's another problem. A 'default' means that if nothing else works,
use this. But which 'this'? You can't have two defaults. In Linux,
most networking setups interpret a default as meaning "the route to
the world". If you can't reach the world using the declared default,
then it should be the default. When the kernel sees this, it uses the
_last_ one set, and ignores others. Methinks you want to spend some time
reading the Linux Network Administrator's Guide (the second edition is
available from O'Reilly as ISBN 1-56592-400-2 for US$40 is you need
the dead tree version, or get it online from
http://tldp.org/guides.html
you want the 'nag2').
Old guy