-
Home Networking Issue
Hello,
I have 2 machines 1 running windows and 1 running linux centOS.
Both machines are connected to a modem/router provided by my ISP.
TRIED TO: Create a network where both machines are connected in order to access the services running on centOS from the windows machine.
WHAT I DID:
- Assigned a static IP to the Linux machine (e.g. 192.168.1.100)
- Configured Samba and other services
WHAT I COULD NOT DO:
- I could not access the Linux machine from the windows machine (from the network places) / or map a network drive from the windows machine to the Linux machine.
- Basically i cannot access any of the services running on the linux machine (even if i enter the IP address of the linux machine - e.g. http://IP_OF_LINUX_MACHINE/ )
- Note that both machines are on the following IP range
192.168.1.2 - 192.168.1.254
Any help appreciated.
Regards,
-
There could be a number of things stopping you getting at your Cent box.
First things first try reading this article on setting up samba Quick and dirty Samba setup
What error message are you getting?
-
Errors
Thanks for taking the time to check the post and answer.
I just cannot access the services, e.g. httpd : I get a "server
connection failed"
As for the samba config article you recommend reading, i did that but with no results.
I know i am doing something wrong, the thing is to find out what..
Thanks again for your time.
-
You should connect to the linux server using the samba incantation. If you use http://... then you're connecting to the web server, and you'd need a package like apache configured to connect that way.
On the windwos machine, try doing 'start->run' and typing "\\<linux-machine-name>" or "\\<linux-machine-ip-address>".
-
I would take a guess that iptables could be blocking you connections, a quick test to prove this is just to stop the service, so
Code:
sudo /etc/init.d/iptables stop
and try to connect again.
If this doesn't work you could check you Linux box is listening on port 80 (web) by running;
Code:
netstat -l |grep www
or Code:
netstat -l |grep 80