Hello.
I'm experiencing difficulties getting my wireless routers to work properly on the network. I have a FreeBSD 8.0 server with 2 ethernet cards - one connected to the modem and one to the switches (network). The server gives out IPs with DHCPd.
The problem is when I try to add wireless routers to the network. From the web interface I disable the DHCPd server and use the LAN ports (not WAN). I also set the wireless router custom IP (which is not used).
The result is that:
Output of dhcpd.conf:
The "include" files consist of bound MAC addresses ("known" PC's).
PS! I just received a job as a sysadmin in a small 40 PC network and will change the DHCP configuration as soon as I get to know the system a bit more. It looks too spread out at the moment and would like to make it more tight.
Any help would be great, thank you.
I'm experiencing difficulties getting my wireless routers to work properly on the network. I have a FreeBSD 8.0 server with 2 ethernet cards - one connected to the modem and one to the switches (network). The server gives out IPs with DHCPd.
The problem is when I try to add wireless routers to the network. From the web interface I disable the DHCPd server and use the LAN ports (not WAN). I also set the wireless router custom IP (which is not used).
The result is that:
- I can't connect to the router's web interface from any of the network computers nor from the wireless network itself, BUT I can ping the router from the
freebsdFreeBSD server. - If I connect to the router (which is now acting as an AP) via wireless or LAN, I am able to access the main server (
freebsdFreeBSD) and all the other computers in the network - I do not have access to the internet If I'm connected with the wireless router (AP)
Output of dhcpd.conf:
Code:
#option netbios-name-servers 192.168.1.1;
#option netbios-node-type 8;
authoritative;
shared-network net {
subnet 192.168.2.0 netmask 255.255.255.0 {
option domain-name "tundmatu.luunja.ee";
option subnet-mask 255.255.255.0;
option routers 192.168.2.1;
option domain-name-servers 194.126.101.34, 193.40.5.94, 193.40.5.124;
include "/usr/local/etc/isc-dhcp_192.168.2";
}
subnet 192.168.4.0 netmask 255.255.255.0 {
option domain-name "tundmatu.luunja.ee";
option subnet-mask 255.255.255.0;
option routers 192.168.4.1;
option domain-name-servers 194.126.101.34, 193.40.5.94, 193.40.5.124;
include "/usr/local/etc/isc-dhcp_192.168.4";
}
subnet 192.168.3.0 netmask 255.255.255.0 {
option domain-name "tundmatu.luunja.ee";
option subnet-mask 255.255.255.0;
option routers 192.168.3.3;
option domain-name-servers 194.126.101.34, 193.40.5.94, 193.40.5.124;
pool {
range 192.168.3.10 192.168.3.50;
}
}
subnet 192.168.1.0 netmask 255.255.255.0 {
option domain-name "luunja.ee";
option subnet-mask 255.255.255.0;
option routers 192.168.1.1;
option domain-name-servers 194.126.101.34, 193.40.5.94, 193.40.5.124;
include "/usr/local/etc/isc-dhcp_192.168.1";
}
}
The "include" files consist of bound MAC addresses ("known" PC's).
PS! I just received a job as a sysadmin in a small 40 PC network and will change the DHCP configuration as soon as I get to know the system a bit more. It looks too spread out at the moment and would like to make it more tight.
Any help would be great, thank you.