James,<br><br>It can be done with channel bonding and probably by just adding the card as a second card on a new 192 network.  IMHO James Kinney is the person that really knows the channel bonding setup with K12LTSP CentOS (Sorry for putting JK on the spot).  Google for chanel bonding.  I'd pick channel bonding as the way to go.<br>
<br>But ... as for a second network, that should be possible by adding another network. Below is how my dhcpd-k12ltsp.conf file is set up on a system I have.  It handles dhcp on the main network (10.) for the Windows systems, and also is still the dhcp server for the thin clients on 192.168.0.x network.  I suppose you could change my Desktop section (10.) to be a different 192.168.1.x network by just copying the workstation section and changing the IP addresses, then add the correct entries in /etc/hosts and have it also work.  Then, again, that might break everything.  I do know that this setup works very well for me and I am using samba as a PDC (10.179.2.9) with this DHCP setup.<br>
<br>dhcpd-k12ltsp with two networks:<br><br>default-lease-time            86400;<br>max-lease-time                86400;<br>ddns-update-style none;<br>allow booting;<br>allow bootp;<br><br>   option option-128 code 128 = string;<br>
   option option-129 code 129 = text;<br>   option option-221 code 221 = text;<br><br>shared-network DESKTOPS {<br><br>     option subnet-mask                255.255.0.0;<br>     option broadcast-address       10.179.0.255;<br>
     option routers                         10.179.1.1;<br>     option netbios-name-servers       10.179.2.9;<br>     option netbios-node-type          2;<br>     option domain-name-servers        10.179.2.6;<br>     option domain-name                "<a href="http://ncs.k12.de.us">ncs.k12.de.us</a>";<br>
<br>  subnet 10.179.0.0 netmask 255.255.0.0 {<br>     range 10.179.3.100 10.179.3.253;<br>     #use-host-decl-names       on;<br>     get-lease-hostnames       true;<br><br>     option log-servers        10.179.2.12;<br>  }<br>
}<br><br>shared-network WORKSTATIONS {<br><br>   option subnet-mask               255.255.255.0;<br>   option broadcast-address         192.168.0.255;<br>   option routers                   192.168.0.254;<br>   option routers                   192.168.0.254;<br>
   option domain-name-servers       192.168.0.254;<br>   option domain-name               "ltsp";<br>   next-server                      192.168.0.254;<br>   option root-path                 "192.168.0.254:/opt/ltsp/i386";<br>
<br>  subnet 192.168.0.0 netmask 255.255.255.0 {<br><br>     range dynamic-bootp 192.168.0.005 192.168.0.125;<br>     #use-host-decl-names       on;<br>     get-lease-hostnames       true;<br><br>     option log-servers        192.168.0.254;<br>
<br>     # trick from Peter Rundle <<a href="mailto:peter.rundle@au.interpath.net">peter.rundle@au.interpath.net</a>><br>     # newer Macs<br>     if substring (option vendor-class-identifier, 0, 9) = "AAPLBSDPC"<br>
     {<br>        filename      "yaboot";<br>        option vendor-class-identifier "AAPLBSDPC";<br>     }<br>     # really old iMacs<br>     elsif substring (option option-221, 0, 5) = "Apple"<br>
     {<br>        filename      "yaboot";<br>        option vendor-class-identifier "AAPLBSDPC";<br>     }<br>     # Intel PXE<br>     elsif substring (option vendor-class-identifier, 0, 9) = "PXEClient"<br>
     {<br>        # NOTE: kernels are specified in /tftpboot/lts/pxe/pxelinux.cfg/<br>        filename      "/lts/pxe/pxelinux.0";<br>     }<br>     # default to an i386 BOOTP image<br>     else<br>        {<br>
        filename      "/lts/vmlinuz.ltsp";<br>     }<br><br>     if substring (option vendor-class-identifier, 20, 3) = "ppc" {<br>        option root-path "192.168.0.254:/opt/ltsp/ppc";<br>     } else {<br>
        option root-path "192.168.0.254:/opt/ltsp/i386";<br>     }<br>  }<br>}<br><br># example configurations for specifying specific kernels to specific clients<br>group   {<br>    use-host-decl-names       on;<br>
    option log-servers        192.168.0.254;<br><br>    host ws001 {<br>        hardware ethernet     00:40:63:cb:08:88;<br>        fixed-address         192.168.0.1;<br>        filename      "/lts/pxe/pxelinux.0";<br>
    }<br>}<br><br><div class="gmail_quote">On Fri, Feb 5, 2010 at 10:38 AM, James Huffman <span dir="ltr"><<a href="mailto:cwerks@yahoo.com">cwerks@yahoo.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I am trying to install another network card to handle terminal traffic better. Is it possible to add a second card to the terminals? (Would this be 2 networks?) this is the only option I think I have other that running a (3 deep) daisy chain that is really slowwww...It seems to me that it should be, but alas, I can not find a way...I am running Centos. If this is an option, can someone please either tell me how or at least send me to a tutorial on this subject?<br>

<br>
Thanks!<br>
<br>
Jim Huffman<br>
<br>
_______________________________________________<br>
K12OSN mailing list<br>
<a href="mailto:K12OSN@redhat.com">K12OSN@redhat.com</a><br>
<a href="https://www.redhat.com/mailman/listinfo/k12osn" target="_blank">https://www.redhat.com/mailman/listinfo/k12osn</a><br>
For more info see <<a href="http://www.k12os.org" target="_blank">http://www.k12os.org</a>><br>
</blockquote></div><br>