Article
Problem:
SLP DA + DHCP OPTION 78, 79 FOR OES LINUX
This tip will help you to configure SLP DA and DHCP to send to option 78 and 79 on OES Linux.
Solution:
1. Configure SLP DA on your OES Linux.
Edit: /etc/slp.conf
Add this to slp.conf ( This is an example )
net.slp.useScopes = DEFAULT net.slp.DAAddresses = 192.168.1.1 net.slp.isDA = true net.slp.isBroadcastOnly = false
2. Configure DHCP with SLP OPTIONS
Edit: /etc/dhcpd.conf
Add this to dhcpd.conf ( This is an example )
option nds-servers 192.168.1.1;
option slp-directory-agent true 192.168.1.1;
option slp-service-scope true "DEFAULT";
option netbios-node-type 8;
option domain-name "adaris.ca";
option domain-name-servers 192.168.1.1;
option routers 192.168.1.254;
authoritative;
ddns-update-style none;
default-lease-time 604800;
subnet 192.168.1.0 netmask {
range 192.168.1.50 192.168.1.100;
default-lease-time 6040800;
}
Restart both services
/etc/init.d/slpd restart /etc/init.d/dhcpd restart
Testing:
Reboot your Windows machine, open a DOS Windows ( CMD ) and then type SLPINFO /D to verify if your workstation get to good information regarding the DA by DHCP.
You should see something like:
192.168.1.1 DHCP UP SLPV1 DEFAULT
Disclaimer: As with everything else at Cool Solutions, this content is definitely not supported by Novell (so don't even think of calling Support if you try something and it blows up).
It was contributed by a community member and is published "as is." It seems to have worked for at least one person, and might work for you. But please be sure to test, test, test before you do anything drastic with it.
Related Articles
User Comments
- Be the first to comment! To leave a comment you need to Login or Register
- 7730 reads


0