On Thu, 27 Dec 2001, AW Verhoef wrote:
> I have the network card working and configured with its own IP address.
> What's next though?
*** Well you'll have to create/adjust your /etc/dhcpd.conf file. Lets
assume NIC1 has ip 192.168.0.254 and NIC2 has ip 192.168.1.254. Depending
on your dhcpd version (I'm using V2) it would look something like this:
<-snip->
default-lease-time 21600;
max-lease-time 21600;
option root-path "/tftpboot/lts/ltsroot";
shared-network WORKSTATIONS {
subnet 192.168.1.0 netmask 255.255.255.0
{
option subnet-mask 255.255.255.0;
option routers 192.168.1.254;
}
subnet 192.168.0.0 netmask 255.255.255.0
{
option subnet-mask 255.255.255.0;
option routers 192.168.0.254;
}
}
group {
use-host-decl-names on;
host ws1-nic1 {
hardware ethernet 00:60:08:A7:52:CE;
fixed-address 192.168.0.1;
filename "lts/vmlinuz.3c905";
}
host ws2-nic2 {
hardware ethernet 00:60:08:A7:52:CE;
fixed-address 192.168.1.1;
filename "lts/vmlinuz.3c905";
}
}
*** You'll have to edit /etc/exports as well and make sure both subnets
192.168.0.x & 192.168.1.x are allowed to mount the rootpath.
>
> On December 27, 2001 07:28 pm, John Cuzzola wrote:
> > *** How far have you gotten? This first step is to get the second network
> > card in your system and configured with it's own ip-address (say
> > 192.168.1.254). Have you done this yet?
> >
> > On Thu, 27 Dec 2001, AW Verhoef wrote:
> > > Hello,
> > >
> > > I am trying with one server to server about 150 clients with LTSP running
> > > on Redhat 7.2. Is there a way in which I can add a second network card,
> > > and have one network card server half the computers, and the other
> > > network card serve the other half of the lab? I imagine there is,
> > > however, I have looked all over for read-me's and how-to's, but haven't
> > > found much.
> > >
> > > If someone could help me in this one, it would be greatly appreciated.
> > >
> > > Thanks ~ Art.
> > >
> > > _____________________________________________________________________
> > > 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.openprojects.net
> >
> > _____________________________________________________________________
> > 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.openprojects.net
>
_____________________________________________________________________
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.openprojects.net