Thanks for the reply guys
"what is 192.168.5.# meant to mean?? "
The # means any number. Trying to be a sittle discrete
I know of the Windows XP host file, which I have used, but the end idea is to build a intranet server, so not practical in the long run.
"you can set up a DNS-server, and set the XP machine to use the Debian-box as the primary DNS-server"
This is what I have tried to achieve thus far, I have set the XP machine to reference my Debian box as a primary Name Server,
This is what I have done on the:
----- FILE 1 -----------
named.conf:
zone "mydomain.cxm" in {
type master;
file "mydomain.cxm";
};
------ FILE 2 ---------
mydomain.cxm:
@ IN SOA linux.mydomain.cxm. hostmaster.linux.mydomain.cxm.(
200505280 ; serial number
10800 ; refresh 3 hours
3600 ; retry 1 hour
36000000 ; expire 1000 hours
86400 ); Minimum 24 hours
IN NS linux.mydomain.cxm
IN A 192.168.2.5
IN MX 10 linux.mydomain.cxm
IN MX 15 dan.mydomain.cxm
linux IN A 192.168.2.5
IN HINFO PC-686 LINUX
ftp IN CNAME linux.mydomain.cxm.
www IN A 192.168.2.5
dan IN A 192.168.2.3
----- END OF FILE LIST ----
When I try to ping linux.mydomain.cxm, I get
unknown host linux.mydomain.cxm
I think I'm headed in the right direction, any pointers?