OpenPath

NETWORKING => Networking - LAN Cabled => Topic started by: fastbyte on August 09, 2008, 06:26:12 am

Title: Configure SLP DA and DHCP to Send to Option 78, 79 on OES Linux (SUSE)
Post by: fastbyte on August 09, 2008, 06:26:12 am
1. Configure SLP DA on your OES Linux (SUSE).

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