[EMAIL PROTECTED] wrote:
> You must allow the interfaces in /etc/sysconfig/dhcpd
> # Examples: DHCPD_INTERFACE="eth0"
> #           DHCPD_INTERFACE="eth0 eth1 eth2 tr0 wlan0"
> #           DHCPD_INTERFACE="internal0 internal1"
> #           DHCPD_INTERFACE="id-00:50:fc:e4:f2:65 id-00:a0:24:cb:cc:5c wlan0"
> #
> DHCPD_INTERFACE="br0"
>
> James
I added "eth0 eth1" to the "DHCPD_INTERFACE=" without success.

Also, I used the id argument to no avail.

I have attached the following files for evaluation:

/etc/dhcpd.conf
/etc/hosts
/opt/ltsp/i386/etc/lts.conf
/etc/sysconfig/dhcpd

Thanks,
Nathan

## Path:        Network/DHCP/DHCP server
## Description: DHCP server settings
## Type:        string
## Default:     ""
## ServiceRestart: dhcpd
#
# Interface(s) for the DHCP server to listen on.
# 
# Instead of the interface name, the name of its configuration can be given.
# If the configuration file is named 
#    /etc/sysconfig/network/ifcfg-eth-id-00:50:fc:e4:f2:65
# then id-00:50:fc:e4:f2:65 would be suitable to identify the configuration.
#
# A special keyword is ANY, it will cause dhcpd to autodetect available
# interfaces.
#
# Examples: DHCPD_INTERFACE="eth0"
#           DHCPD_INTERFACE="eth0 eth1 eth2 tr0 wlan0"
#           DHCPD_INTERFACE="internal0 internal1"
#           DHCPD_INTERFACE="id-00:50:fc:e4:f2:65 id-00:a0:24:cb:cc:5c wlan0"
#           DHCPD_INTERFACE="ANY"
#
DHCPD_INTERFACE="id-00:08:54:14:0d:73"

## Type:        yesno
## Default:     yes
## ServiceRestart: dhcpd
#
# Shall the DHCP server dhcpd run in a chroot jail (/var/lib/dhcp)?
#
# Each time you start dhcpd with the init script, /etc/dhcpd.conf will 
# be copied to /var/lib/dhcp/etc/.
# 
# Some files that are important for hostname to IP address resolution
# (/etc/{hosts,host.conf,resolv.conf,localtime}, /lib/libnss_dns.so.2,
# /lib/libresolv.so.2) will also be copied to the chroot jail by the 
# init script when you start it (about 100kB altogether).
# 
# The pid file will be in /var/lib/dhcp/var/run/dhcpd.pid. 
#
DHCPD_RUN_CHROOTED="yes"

## Type:        string
## Default:     ""
## ServiceRestart: dhcpd
#
# Since version 3, dhcpd.conf can contain include statements. 
# If you enter the names of any include files here, _all_ conf
# files will be copied to $chroot/etc/, when dhcpd is started in the 
# chroot jail. (/etc/dhcpd.conf is always copied.)
#
# For your convenience, you can also specify entire directories, like 
# "/etc/dhcpd.conf.d".
#
# Example: "/etc/dhcpd.conf.shared /etc/dhcpd.conf.bootp-clients"
#
DHCPD_CONF_INCLUDE_FILES=""

## Type:        string
## Default:     "dhcpd"
## ServiceRestart: dhcpd
#
# Leave empty or enter "root" to let dhcpd run as root. 
# Enter "dhcpd" to run dhcpd as user 'dhcpd'.
#
DHCPD_RUN_AS="dhcpd"

## Type:        string
## Default:     ""
## ServiceRestart: dhcpd
#
# Other arguments that you want dhcpd to be started with
# (e.g. "-p 1234" for a non-standard port to listen on)
#
DHCPD_OTHER_ARGS=""

## Type:        string
## Default:     ""
## ServiceRestart: dhcpd
#
# You may specify another dhcpd binary to be run. 
# The full path needs to be specified.
#
# If empty, the default applies. 
#
DHCPD_BINARY=""

option subnet-mask 255.255.255.0;
option broadcast-address 192.168.0.255;
option root-path "192.168.0.254:/opt/ltsp/i386";
option option-128 code 128 = string;
option option-129 code 129 = text;
option domain-name "ltsp";
option domain-name-servers 192.168.0.254;
option routers 192.168.0.254;
next-server 192.168.0.254;
#
# Sample configuration file for ISC dhcpd
#
# Make changes to this file and copy it to /etc/dhcpd.conf.sample
#
ddns-update-style none;
max-lease-time 21600;
default-lease-time 21600;
subnet 192.168.0.0 netmask 255.255.255.0 {
  option log-servers 192.168.0.254;
  use-host-decl-names on;
  default-lease-time 14400;
  max-lease-time 172800;
      ##
## If you want to use static IP address for your workstations, then un-comment
## the following section and modify to suit your network.
## Then, duplicate this section for each workstation that needs a static
## IP address.
##
  host ws001 {
    hardware ethernet    00:08:54:14:0D:47;
    fixed-address 192.168.0.1;
    filename "/lts/vmlinuz-2.4.26-ltsp-3";
  }
  host ws002 {
    hardware ethernet    00:08:54:14:0D:78;
    fixed-address 192.168.0.2;
    filename "/lts/vmlinuz-2.4.26-ltsp-3";
  }
  host ws003 {
    hardware ethernet    00:08:54:14:0D:53;
    fixed-address 192.168.0.3;
    filename "/lts/vmlinuz-2.4.26-ltsp-3";
  }
  host ws004 {
    hardware ethernet    00:08:54:14:0D:5B;
    fixed-address 192.168.0.4;
    filename "/lts/vmlinuz-2.4.26-ltsp-3";
  }
  host ws005 {
    hardware ethernet    00:08:54:14:0D:79;
    fixed-address 192.168.0.5;
    filename "/lts/vmlinuz-2.4.26-ltsp-3";
  }
  host ws006 {
    hardware ethernet    00:50:FC:E6:A0:7A;
    fixed-address 192.168.0.6;
    filename "/lts/vmlinuz-2.4.26-ltsp-3";
  }
  host ws007 {
    hardware ethernet    00:08:54:14:2A:FA;
    fixed-address 192.168.0.7;
    filename "/lts/vmlinuz-2.4.26-ltsp-3";
  }
  host ws008 {
    hardware ethernet    00:08:54:14:10:61;
    fixed-address 192.168.0.8;
    filename "/lts/vmlinuz-2.4.26-ltsp-3";
  }
  host ws009 {
    hardware ethernet    00:08:54:14:10:66;
    fixed-address 192.168.0.9;
    filename "/lts/vmlinuz-2.4.26-ltsp-3";
  }
  host ws010 {
    hardware ethernet    00:08:54:14:10:67;
    fixed-address 192.168.0.10;
    filename "/lts/vmlinuz-2.4.26-ltsp-3";
  }
}

#
# hosts         This file describes a number of hostname-to-address
#               mappings for the TCP/IP subsystem.  It is mostly
#               used at boot time, when no name servers are running.
#               On small systems, this file can be used instead of a
#               "named" name server.
# Syntax:
#    
# IP-Address  Full-Qualified-Hostname  Short-Hostname
#

127.0.0.1       localhost

# special IPv6 addresses
::1             localhost ipv6-localhost ipv6-loopback

fe00::0         ipv6-localnet

ff00::0         ipv6-mcastprefix
ff02::1         ipv6-allnodes
ff02::2         ipv6-allrouters
ff02::3         ipv6-allhosts
192.168.0.254   lab.lbcollege.org lab
## LTSP-begin ##
#
# The lines between 'LTSP-begin' and 'LTSP-end' were added
# on: Tue Jan  9 10:33:04 2007, by the ltspcfg configuration tool.
# For more information, visit the LTSP homepage
# at http://www.LTSP.org
#

192.168.0.1     ws001.ltsp      ws001
192.168.0.2     ws002.ltsp      ws002
192.168.0.3     ws003.ltsp      ws003
192.168.0.4     ws004.ltsp      ws004
192.168.0.5     ws005.ltsp      ws005
192.168.0.6     ws006.ltsp      ws006
192.168.0.7     ws007.ltsp      ws007
192.168.0.8     ws008.ltsp      ws008
192.168.0.9     ws009.ltsp      ws009
192.168.0.10    ws010.ltsp      ws010
192.168.0.11    ws011.ltsp      ws011
192.168.0.12    ws012.ltsp      ws012
192.168.0.13    ws013.ltsp      ws013
192.168.0.14    ws014.ltsp      ws014
192.168.0.15    ws015.ltsp      ws015
192.168.0.16    ws016.ltsp      ws016
192.168.0.17    ws017.ltsp      ws017
192.168.0.18    ws018.ltsp      ws018
192.168.0.19    ws019.ltsp      ws019
192.168.0.20    ws020.ltsp      ws020
192.168.0.21    ws021.ltsp      ws021
192.168.0.22    ws022.ltsp      ws022
192.168.0.23    ws023.ltsp      ws023
192.168.0.24    ws024.ltsp      ws024
192.168.0.25    ws025.ltsp      ws025
192.168.0.26    ws026.ltsp      ws026
192.168.0.27    ws027.ltsp      ws027
192.168.0.28    ws028.ltsp      ws028
192.168.0.29    ws029.ltsp      ws029
192.168.0.30    ws030.ltsp      ws030
192.168.0.31    ws031.ltsp      ws031
192.168.0.32    ws032.ltsp      ws032
192.168.0.33    ws033.ltsp      ws033
192.168.0.34    ws034.ltsp      ws034
192.168.0.35    ws035.ltsp      ws035
192.168.0.36    ws036.ltsp      ws036
192.168.0.37    ws037.ltsp      ws037
192.168.0.38    ws038.ltsp      ws038
192.168.0.39    ws039.ltsp      ws039
192.168.0.40    ws040.ltsp      ws040
192.168.0.41    ws041.ltsp      ws041
192.168.0.42    ws042.ltsp      ws042
192.168.0.43    ws043.ltsp      ws043
192.168.0.44    ws044.ltsp      ws044
192.168.0.45    ws045.ltsp      ws045
192.168.0.46    ws046.ltsp      ws046
192.168.0.47    ws047.ltsp      ws047
192.168.0.48    ws048.ltsp      ws048
192.168.0.49    ws049.ltsp      ws049
192.168.0.50    ws050.ltsp      ws050
192.168.0.51    ws051.ltsp      ws051
192.168.0.52    ws052.ltsp      ws052
192.168.0.53    ws053.ltsp      ws053
192.168.0.54    ws054.ltsp      ws054
192.168.0.55    ws055.ltsp      ws055
192.168.0.56    ws056.ltsp      ws056
192.168.0.57    ws057.ltsp      ws057
192.168.0.58    ws058.ltsp      ws058
192.168.0.59    ws059.ltsp      ws059
192.168.0.60    ws060.ltsp      ws060
192.168.0.61    ws061.ltsp      ws061
192.168.0.62    ws062.ltsp      ws062
192.168.0.63    ws063.ltsp      ws063
192.168.0.64    ws064.ltsp      ws064
192.168.0.65    ws065.ltsp      ws065
192.168.0.66    ws066.ltsp      ws066
192.168.0.67    ws067.ltsp      ws067
192.168.0.68    ws068.ltsp      ws068
192.168.0.69    ws069.ltsp      ws069
192.168.0.70    ws070.ltsp      ws070
192.168.0.71    ws071.ltsp      ws071
192.168.0.72    ws072.ltsp      ws072
192.168.0.73    ws073.ltsp      ws073
192.168.0.74    ws074.ltsp      ws074
192.168.0.75    ws075.ltsp      ws075
192.168.0.76    ws076.ltsp      ws076
192.168.0.77    ws077.ltsp      ws077
192.168.0.78    ws078.ltsp      ws078
192.168.0.79    ws079.ltsp      ws079
192.168.0.80    ws080.ltsp      ws080
192.168.0.81    ws081.ltsp      ws081
192.168.0.82    ws082.ltsp      ws082
192.168.0.83    ws083.ltsp      ws083
192.168.0.84    ws084.ltsp      ws084
192.168.0.85    ws085.ltsp      ws085
192.168.0.86    ws086.ltsp      ws086
192.168.0.87    ws087.ltsp      ws087
192.168.0.88    ws088.ltsp      ws088
192.168.0.89    ws089.ltsp      ws089
192.168.0.90    ws090.ltsp      ws090
192.168.0.91    ws091.ltsp      ws091
192.168.0.92    ws092.ltsp      ws092
192.168.0.93    ws093.ltsp      ws093
192.168.0.94    ws094.ltsp      ws094
192.168.0.95    ws095.ltsp      ws095
192.168.0.96    ws096.ltsp      ws096
192.168.0.97    ws097.ltsp      ws097
192.168.0.98    ws098.ltsp      ws098
192.168.0.99    ws099.ltsp      ws099
192.168.0.100   ws100.ltsp      ws100
192.168.0.101   ws101.ltsp      ws101
192.168.0.102   ws102.ltsp      ws102
192.168.0.103   ws103.ltsp      ws103
192.168.0.104   ws104.ltsp      ws104
192.168.0.105   ws105.ltsp      ws105
192.168.0.106   ws106.ltsp      ws106
192.168.0.107   ws107.ltsp      ws107
192.168.0.108   ws108.ltsp      ws108
192.168.0.109   ws109.ltsp      ws109
192.168.0.110   ws110.ltsp      ws110
192.168.0.111   ws111.ltsp      ws111
192.168.0.112   ws112.ltsp      ws112
192.168.0.113   ws113.ltsp      ws113
192.168.0.114   ws114.ltsp      ws114
192.168.0.115   ws115.ltsp      ws115
192.168.0.116   ws116.ltsp      ws116
192.168.0.117   ws117.ltsp      ws117
192.168.0.118   ws118.ltsp      ws118
192.168.0.119   ws119.ltsp      ws119
192.168.0.120   ws120.ltsp      ws120
192.168.0.121   ws121.ltsp      ws121
192.168.0.122   ws122.ltsp      ws122
192.168.0.123   ws123.ltsp      ws123
192.168.0.124   ws124.ltsp      ws124
192.168.0.125   ws125.ltsp      ws125
192.168.0.126   ws126.ltsp      ws126
192.168.0.127   ws127.ltsp      ws127
192.168.0.128   ws128.ltsp      ws128
192.168.0.129   ws129.ltsp      ws129
192.168.0.130   ws130.ltsp      ws130
192.168.0.131   ws131.ltsp      ws131
192.168.0.132   ws132.ltsp      ws132
192.168.0.133   ws133.ltsp      ws133
192.168.0.134   ws134.ltsp      ws134
192.168.0.135   ws135.ltsp      ws135
192.168.0.136   ws136.ltsp      ws136
192.168.0.137   ws137.ltsp      ws137
192.168.0.138   ws138.ltsp      ws138
192.168.0.139   ws139.ltsp      ws139
192.168.0.140   ws140.ltsp      ws140
192.168.0.141   ws141.ltsp      ws141
192.168.0.142   ws142.ltsp      ws142
192.168.0.143   ws143.ltsp      ws143
192.168.0.144   ws144.ltsp      ws144
192.168.0.145   ws145.ltsp      ws145
192.168.0.146   ws146.ltsp      ws146
192.168.0.147   ws147.ltsp      ws147
192.168.0.148   ws148.ltsp      ws148
192.168.0.149   ws149.ltsp      ws149
192.168.0.150   ws150.ltsp      ws150
192.168.0.151   ws151.ltsp      ws151
192.168.0.152   ws152.ltsp      ws152
192.168.0.153   ws153.ltsp      ws153
192.168.0.154   ws154.ltsp      ws154
192.168.0.155   ws155.ltsp      ws155
192.168.0.156   ws156.ltsp      ws156
192.168.0.157   ws157.ltsp      ws157
192.168.0.158   ws158.ltsp      ws158
192.168.0.159   ws159.ltsp      ws159
192.168.0.160   ws160.ltsp      ws160
192.168.0.161   ws161.ltsp      ws161
192.168.0.162   ws162.ltsp      ws162
192.168.0.163   ws163.ltsp      ws163
192.168.0.164   ws164.ltsp      ws164
192.168.0.165   ws165.ltsp      ws165
192.168.0.166   ws166.ltsp      ws166
192.168.0.167   ws167.ltsp      ws167
192.168.0.168   ws168.ltsp      ws168
192.168.0.169   ws169.ltsp      ws169
192.168.0.170   ws170.ltsp      ws170
192.168.0.171   ws171.ltsp      ws171
192.168.0.172   ws172.ltsp      ws172
192.168.0.173   ws173.ltsp      ws173
192.168.0.174   ws174.ltsp      ws174
192.168.0.175   ws175.ltsp      ws175
192.168.0.176   ws176.ltsp      ws176
192.168.0.177   ws177.ltsp      ws177
192.168.0.178   ws178.ltsp      ws178
192.168.0.179   ws179.ltsp      ws179
192.168.0.180   ws180.ltsp      ws180
192.168.0.181   ws181.ltsp      ws181
192.168.0.182   ws182.ltsp      ws182
192.168.0.183   ws183.ltsp      ws183
192.168.0.184   ws184.ltsp      ws184
192.168.0.185   ws185.ltsp      ws185
192.168.0.186   ws186.ltsp      ws186
192.168.0.187   ws187.ltsp      ws187
192.168.0.188   ws188.ltsp      ws188
192.168.0.189   ws189.ltsp      ws189
192.168.0.190   ws190.ltsp      ws190
192.168.0.191   ws191.ltsp      ws191
192.168.0.192   ws192.ltsp      ws192
192.168.0.193   ws193.ltsp      ws193
192.168.0.194   ws194.ltsp      ws194
192.168.0.195   ws195.ltsp      ws195
192.168.0.196   ws196.ltsp      ws196
192.168.0.197   ws197.ltsp      ws197
192.168.0.198   ws198.ltsp      ws198
192.168.0.199   ws199.ltsp      ws199
192.168.0.200   ws200.ltsp      ws200
192.168.0.201   ws201.ltsp      ws201
192.168.0.202   ws202.ltsp      ws202
192.168.0.203   ws203.ltsp      ws203
192.168.0.204   ws204.ltsp      ws204
192.168.0.205   ws205.ltsp      ws205
192.168.0.206   ws206.ltsp      ws206
192.168.0.207   ws207.ltsp      ws207
192.168.0.208   ws208.ltsp      ws208
192.168.0.209   ws209.ltsp      ws209
192.168.0.210   ws210.ltsp      ws210
192.168.0.211   ws211.ltsp      ws211
192.168.0.212   ws212.ltsp      ws212
192.168.0.213   ws213.ltsp      ws213
192.168.0.214   ws214.ltsp      ws214
192.168.0.215   ws215.ltsp      ws215
192.168.0.216   ws216.ltsp      ws216
192.168.0.217   ws217.ltsp      ws217
192.168.0.218   ws218.ltsp      ws218
192.168.0.219   ws219.ltsp      ws219
192.168.0.220   ws220.ltsp      ws220
192.168.0.221   ws221.ltsp      ws221
192.168.0.222   ws222.ltsp      ws222
192.168.0.223   ws223.ltsp      ws223
192.168.0.224   ws224.ltsp      ws224
192.168.0.225   ws225.ltsp      ws225
192.168.0.226   ws226.ltsp      ws226
192.168.0.227   ws227.ltsp      ws227
192.168.0.228   ws228.ltsp      ws228
192.168.0.229   ws229.ltsp      ws229
192.168.0.230   ws230.ltsp      ws230
192.168.0.231   ws231.ltsp      ws231
192.168.0.232   ws232.ltsp      ws232
192.168.0.233   ws233.ltsp      ws233
192.168.0.234   ws234.ltsp      ws234
192.168.0.235   ws235.ltsp      ws235
192.168.0.236   ws236.ltsp      ws236
192.168.0.237   ws237.ltsp      ws237
192.168.0.238   ws238.ltsp      ws238
192.168.0.239   ws239.ltsp      ws239
192.168.0.240   ws240.ltsp      ws240
192.168.0.241   ws241.ltsp      ws241
192.168.0.242   ws242.ltsp      ws242
192.168.0.243   ws243.ltsp      ws243
192.168.0.244   ws244.ltsp      ws244
192.168.0.245   ws245.ltsp      ws245
192.168.0.246   ws246.ltsp      ws246
192.168.0.247   ws247.ltsp      ws247
192.168.0.248   ws248.ltsp      ws248
192.168.0.249   ws249.ltsp      ws249
192.168.0.250   ws250.ltsp      ws250
192.168.0.251   ws251.ltsp      ws251
192.168.0.252   ws252.ltsp      ws252
192.168.0.253   ws253.ltsp      ws253
192.168.0.254   lab.lbcollege.org

## LTSP-end ##

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_____________________________________________________________________
Ltsp-discuss mailing list.   To un-subscribe, or change prefs, goto:
      https://lists.sourceforge.net/lists/listinfo/ltsp-discuss
For additional LTSP help,   try #ltsp channel on irc.freenode.net

Reply via email to