Quote:
Originally Posted by linuxhippy
My IP gives my router a DHCP address. One of my computer's on that router's network is a server and needs a static address on my home network.
I have 3 computers on my home network. 2 of those have a dynamic internal IP address. 1 of those (my Slack pc) has a static internal address. All 3 have a dynamic IP address outside my house.
|
Hi,
After reading through this thread I have a few recommendations.
One, I think you are resetting your router without need.
Two, you should set your slack with a static IP as you stated in a previous thread. But continue to use the dhcp.
You can edit the /etc/rc.d/rc.inet1.conf and provide the information for the desired device. This would be IP address, mask, gateway IP and your WEP key in hex.
You could use the cli to confirm. Make sure that WEP and MAC filtering are off on the router until you get the correct configuration.
Code:
#ifconfig -a #this will get you all
#ifconfig eth0 192.168.0.10 #assume unassigned IP
#route add defalut gw 192.168.0.1 #your gateway IP
#ifconfig -a #see eth0
#route -n #confirm route
#ping 192.168.0.1 #check the gateway
#ping google.com #check dns if fail then
#ping 72.14.207.99 #ping outside lan
note; if your ping google.com fails then your /etc/resolv.conf is not setup properly.
When you have the network setup properly then you can edit the /etc/rc.d/rc.inet1.conf and add your WEP key. Then go to your router an edit to allow the WEP and MAC filtering options.