<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
<title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Chris Arnold wrote:
<blockquote cite="mid:17700199.0.1262551110986.JavaMail.root@mail"
type="cite">
<pre wrap="">Simon Hobson wrote:
</pre>
<blockquote type="cite">
<pre wrap="">No, it doesn't go in the dhcpd config file, it goes on the command
line that invokes dhcpd. There will almost certainly be a system
specific config file where the list of interfaces can be specified.
Failing that, you have to edit the script that starts dhcpd.
</pre>
</blockquote>
<pre wrap=""><!---->You guys were right, there is a file to define the interface. On SLES10 SP3 it is found in /etc/sysconfig/dhcpd. It was already defined in that file but still shows as 0.0.0.0:67 in netstat. Is that the way it was designed?
I can get netstat to show the ip:67 by entering local-address "ipaddress" in the dhcpd.conf file.
_______________________________________________
dhcp-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:dhcp-users@lists.isc.org">dhcp-users@lists.isc.org</a>
<a class="moz-txt-link-freetext" href="https://lists.isc.org/mailman/listinfo/dhcp-users">https://lists.isc.org/mailman/listinfo/dhcp-users</a>
</pre>
</blockquote>
<br>
Chris,<br>
<br>
This list covers ISC DHCP, and not individual implementations.<br>
<br>
Considering you are working with SLES10, maybe consult the SLES
documentation? There is a YaST wizard that will help guide you through
all that.<br>
<br>
Ref:<br>
<a class="moz-txt-link-rfc2396E" href="http://www.linuxtopia.org/online_books/suse_linux_guides/SLES10/suse_enterprise_linux_server_installation_admin/index.html"><http://www.linuxtopia.org/online_books/suse_linux_guides/SLES10/suse_enterprise_linux_server_installation_admin/index.html></a><br>
->
<a class="moz-txt-link-rfc2396E" href="http://www.linuxtopia.org/online_books/suse_linux_guides/SLES10/suse_enterprise_linux_server_installation_admin/sec_dhcp_yast.html"><http://www.linuxtopia.org/online_books/suse_linux_guides/SLES10/suse_enterprise_linux_server_installation_admin/sec_dhcp_yast.html></a><br>
<br>
Failing that, the installed /etc/init.d/dhcpd provides a start()
function that starts up dhcpd. In the example below, the init script
defines a variable that<br>
is set from /etc/sysconfig/dhcpd. So if the interface you wish to use
is eth10, then create a single line in /etc/sysconfig/dhcpd that says:<br>
<br>
DHCPDARGS=eth10<br>
<br>
<blockquote>start() {<br>
# Start daemons.<br>
echo -n $"Starting $prog: "<br>
daemon /usr/sbin/dhcpd ${DHCPDARGS} 2>/dev/null<br>
</blockquote>
Regards,<br>
<span class="moz-txt-tag">-- <br>
</span>Tim Peiffer
<br>
Network Support Engineer
<br>
Office of Information Technology
<br>
University of Minnesota/NorthernLights GigaPOP
<br>
<br>
<img src="cid:part1.03070201.02050406@UMN.EDU" alt=""><br>
</body>
</html>