Jenny_Hopkins@toby-churchill.com writes:
dummy0? Shouldn't that go out on a real device instead? eth0 for me, normally.
Ah. I think I'm getting warm. I assumed "dummy0" was the name Debian gave to eth0. (First time debian user after Red hat).
No, eth0 is a kernel thing. dummy0 is the dummy interface. Your routing table is trying to route over dummy0 when it needs to be over eth0. What does ifconfig -a show?
Now I can't remember where this is set up. /etc/networking or similar, I suspect.
I have also been looking for /conf.modules and don't have such a file.
ITYM /etc/modules.conf... that other name was deprecated some time ago.
I know this one I think.
IT comes down to the route table.
if you do a route -n it will list all the routes you have.
you will need to do a delete of some of the routes and set it up to forward all the stuff for your subnet to the ethernet and set a default gateway to your router.
the commands are something like
route add gw 192.168.11.0 192.168.11.106 255.255.255.0 eth0
I can't remember it exactly off the to of my head but its all in man route.
the important thing is the eth0 on the end.
Thanks
D
--- MJ Ray markj@cloaked.freeserve.co.uk wrote:
Jenny_Hopkins@toby-churchill.com writes:
dummy0? Shouldn't that go out on a real device instead? eth0 for
me,
normally.
Ah. I think I'm getting warm. I assumed "dummy0" was the name
Debian gave
to eth0. (First time debian user after Red hat).
No, eth0 is a kernel thing. dummy0 is the dummy interface. Your routing table is trying to route over dummy0 when it needs to be over eth0. What does ifconfig -a show?
Now I can't remember where this is set up. /etc/networking or similar, I suspect.
I have also been looking for /conf.modules and don't have such a
file.
ITYM /etc/modules.conf... that other name was deprecated some time ago.
-- MJR
alug, the Anglian Linux User Group list Send list replies to alug@stu.uea.ac.uk http://rabbit.stu.uea.ac.uk/cgi-bin/listinfo/alug See the website for instructions on digest or unsub!
__________________________________________________ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/
On Wed, Apr 11, 2001 at 04:16:46PM +0100, MJ Ray wrote:
No, eth0 is a kernel thing. dummy0 is the dummy interface. Your routing table is trying to route over dummy0 when it needs to be over eth0. What does ifconfig -a show?
Now I can't remember where this is set up. /etc/networking or similar, I suspect.
The interface eth0 will exist if the driver for the corresponding network card exists, but it will not get an IP address assigned at startup unless it is in ther /etc/network/interfaces file. With no ethernet card that file will look like this:
--- start included file --- # /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
# The loopback interface iface lo inet loopback --- end included file ---
So to add a new interface you would add a line to this file like:
iface eth0 inet <hostname-or-ip>
where you replace hostname either with a hostname which, when looked up in the /etc/hosts file will resolve to the IP address you want to assign to this card, or with the IP address itself.
Having done this if it doesn't spring into like then probably best to post the output of 'ifconfig -a' and 'route'.
Steve.