iSeriesCodePoet
Programmer
I am using (I believe) DHCPD on Slackware 9 and don't really have a problem, but an annoyance.
My Setup:
3 NICs, 2 internal for seperate networks, and 1 extranal. The two internal NICs are assigned IP addresses of 10.1.1.1 and 10.1.2.1. DHCP works on both.
My Problem:
Howerver, whenever I connect up a computer, it will grab an IP address for the other NIC, then Windows will assign a 169. address, then it will grab the proper IP address.
Here is my config:
Thanks for any help you give,
iSeriesCodePoet
iSeries Programmer/Lawson Software Administrator
![[pc2] [pc2] [pc2]](/data/assets/smilies/pc2.gif)
See my progress to converting to linux. The Programmer's Knowledge Base ->
My Setup:
3 NICs, 2 internal for seperate networks, and 1 extranal. The two internal NICs are assigned IP addresses of 10.1.1.1 and 10.1.2.1. DHCP works on both.
My Problem:
Howerver, whenever I connect up a computer, it will grab an IP address for the other NIC, then Windows will assign a 169. address, then it will grab the proper IP address.
Here is my config:
Code:
# dhcpd.conf
#
# Configuration file for ISC dhcpd (see 'man dhcpd.conf')
ddns-update-style ad-hoc;
# Upstairs
option domain-name-servers 10.1.1.1;
subnet 10.1.1.0 netmask 255.255.255.0 {
ddns-updates off;
option domain-name-servers 10.1.1.1;
option domain-name "wills.inet";
option routers 10.1.1.1;
range 10.1.1.50 10.1.1.200;
allow unknown-clients;
}
# Downstairs
option domain-name-servers 10.1.2.1;
subnet 10.1.2.0 netmask 255.255.255.0 {
ddns-updates off;
option domain-name-servers 10.1.2.1;
option domain-name "apartment.inet";
option routers 10.1.2.1;
range 10.1.2.50 10.1.2.200;
allow unknown-clients;
}
Thanks for any help you give,
iSeriesCodePoet
iSeries Programmer/Lawson Software Administrator
![[pc2] [pc2] [pc2]](/data/assets/smilies/pc2.gif)
See my progress to converting to linux. The Programmer's Knowledge Base ->