• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Ok another stupid ?

thanks science wiz, forgot all about that.

OK guys I need more help here. I got the DHCP running and I hosed up my firewall. 😛

I can fix the firewall up, but I still can't seem to be able to share the internet access. I am not sure what I am suppose to do now. Can anyone help me?

DHCP is running adn windows recieves a ip address, dns, and gateway. I already tried toggling the around to make it work. But I think i am not going about this correctly.
 
Adul - how many machines do you have on your network? You might do better to assign static addresses like I do, if DHCP is becoming a PITA. You would mainly need to know the IP of your ISP's DNS and you already know the gateway (your firewall), and you can just manually insert that stuff in. 🙂
 
The dhcp works, I guess I just have to get the dns numbers right. I try it now. BTW, how does one restart dhcp?
 
Can get it to run for me 🙁 Ah well, I'll do it the hard way. I like to dig around the files anyways.

Here is what my dhcp file looks like

# Sample /etc/dhcpd.conf
# (add your comments here)
default-lease-time 14400;
max-lease-time 259200;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.1.255;
option routers 192.168.1.254;
option domain-name-servers 24.1.240.35, 24.1.240.34, 24.1.240.33;
option domain-name "nefdom.org";

subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.10 192.168.1.100;
range 192.168.1.150 192.168.1.200;
}
 
Back
Top