Never enough...

Here you can find out about our Folding Team! Our goal: to understand protein folding, protein aggregation, and related diseases
Post Reply
grunt
Legit Extremist
Legit Extremist
Posts: 393
Joined: Tue Jan 20, 2004 10:16 am
Location: Savannah, Ga

Never enough...

Post by grunt »

It just isnt... Folding is worse then crack, Im averaging around 850ppd and Im still not satisfied!
User avatar
infinitevalence
Legit Extremist
Legit Extremist
Posts: 2841
Joined: Sat Apr 24, 2004 12:40 pm
Location: Nashville, TN
Contact:

Post by infinitevalence »

now you know why i got so many xeons... if only i could get my cluster working agian...
"Don't open that! It's an alien planet! Is there air? You don't know!"
User avatar
pcrobot
Legit Extremist
Legit Extremist
Posts: 820
Joined: Tue Jan 10, 2006 9:03 am
Location: Indianapolis

Re: Never enough...

Post by pcrobot »

grunt wrote:It just isnt... Folding is worse then crack, Im averaging around 850ppd and Im still not satisfied!
LOL, it hard only having one rig... :rolleyes:
User avatar
werewolfdaddy
Legit Extremist
Legit Extremist
Posts: 670
Joined: Fri Sep 30, 2005 12:16 am
Location: Knoxville, Tn
Contact:

Post by werewolfdaddy »

infinitevalence wrote:now you know why i got so many xeons... if only i could get my cluster working agian...
What's wrong with your cluster?
Image
User avatar
infinitevalence
Legit Extremist
Legit Extremist
Posts: 2841
Joined: Sat Apr 24, 2004 12:40 pm
Location: Nashville, TN
Contact:

Post by infinitevalence »

its something with the DHCP, my nodes are downloading their OS fine off the TFTP server but they are not able to connect after being assigned an adress fomr the DHCP server.
"Don't open that! It's an alien planet! Is there air? You don't know!"
User avatar
kenc51
Legit Extremist
Legit Extremist
Posts: 5167
Joined: Thu Jun 23, 2005 1:56 pm
Location: Dublin, Republic of Ireland
Contact:

Post by kenc51 »

infinitevalence wrote:its something with the DHCP, my nodes are downloading their OS fine off the TFTP server but they are not able to connect after being assigned an adress fomr the DHCP server.
Have you entered a default gateway?
User avatar
infinitevalence
Legit Extremist
Legit Extremist
Posts: 2841
Joined: Sat Apr 24, 2004 12:40 pm
Location: Nashville, TN
Contact:

Post by infinitevalence »

"Don't open that! It's an alien planet! Is there air? You don't know!"
User avatar
kenc51
Legit Extremist
Legit Extremist
Posts: 5167
Joined: Thu Jun 23, 2005 1:56 pm
Location: Dublin, Republic of Ireland
Contact:

Post by kenc51 »

try this command

route add -net default gw 192.168.2.1 dev eth0

change the IP to what ever is your gateway/router.....
User avatar
infinitevalence
Legit Extremist
Legit Extremist
Posts: 2841
Joined: Sat Apr 24, 2004 12:40 pm
Location: Nashville, TN
Contact:

Post by infinitevalence »

Code: Select all

# DHCP configuration file for DHCP ISC 3.0
 
ddns-update-style none;
 
# Definition of PXE-specific options
# Code 1: Multicast IP address of boot file server
# Code 2: UDP port that client should monitor for MTFTP responses
# Code 3: UDP port that MTFTP servers are using to listen for MTFTP requests
# Code 4: Number of seconds a client must listen for activity before trying
#         to start a new MTFTP transfer
# Code 5: Number of seconds a client must listen before trying to restart
#         a MTFTP transfer
 
option space PXE;
option PXE.mtftp-ip               code 1 = ip-address;
option PXE.mtftp-cport            code 2 = unsigned integer 16;
option PXE.mtftp-sport            code 3 = unsigned integer 16;
option PXE.mtftp-tmout            code 4 = unsigned integer 8;
option PXE.mtftp-delay            code 5 = unsigned integer 8;
option PXE.discovery-control      code 6 = unsigned integer 8;
option PXE.discovery-mcast-addr   code 7 = ip-address;
 
subnet 192.168.1.0 netmask 255.255.255.0 {
 
  
  class "pxeclients" {
    match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";
    option vendor-class-identifier "PXEClient";
    vendor-option-space PXE;
 
    # At least one of the vendor-specific PXE options must be set in
    # order for the client boot ROMs to realize that we are a PXE-compliant
    # server.  We set the MCAST IP address to 0.0.0.0 to tell the boot ROM
    # that we can't provide multicast TFTP (address 0.0.0.0 means no
    # address).
 
    option PXE.mtftp-ip 0.0.0.0;
 
    # This is the name of the file the boot ROMs should download.
    filename "pxelinux.0";
    # This is the name of the server they should get it from.
    # Use the master's IP
    next-server 192.168.1.1;
  }

  # If you are using etherboot with a non specific image 
  class "etherboot" {
        if substring (option vendor-class-identifier, 0, 9) = "Etherboot" {
        filename "/diskless/vmlinuz";
        }
  }
  
  pool {
    max-lease-time 86400;
    default-lease-time 86400;
    # This prevents unlisted machines from getting an IP
    deny unknown-clients;
  }
 
  host slave21 {
       # Use your slave's MAC address
       hardware ethernet                00:40:63:C2:CA:C9;
       # Give your slave a static IP
       fixed-address                    192.168.1.21;
       server-name                      "master";
       # Use your gateway IP, if required
       option routers                   192.168.1.1;
       # Use your DNS IP, if required
       option domain-name-servers       192.168.1.1;
       option domain-name               "mydomain.com";
       # Use your slave hostname
       option host-name                 "slave21";
       
       
       # Etherboot and pxe boot with a mac specific image
       option root-path                 "/diskless/192.168.1.21";
       
       if substring (option vendor-class-identifier, 0, 9) = "Etherboot" {
                        filename "/vmlinuz_arch";
        } else if substring (option vendor-class-identifier, 0,9) ="PXEClient" {
                        filename "/pxelinux.0";
        }
                                                               
  }
}
Yeah its not that... its something in the DHCP config info on the DHCP server. Sadly my roommate admins that server so i have to get his ass to fix it :(
"Don't open that! It's an alien planet! Is there air? You don't know!"
User avatar
kenc51
Legit Extremist
Legit Extremist
Posts: 5167
Joined: Thu Jun 23, 2005 1:56 pm
Location: Dublin, Republic of Ireland
Contact:

Post by kenc51 »

The end of that .config file..
# Use your gateway IP, if required
option routers 192.168.1.1;
# Use your DNS IP, if required
option domain-name-servers 192.168.1.1;

option domain-name "mydomain.com";
# Use your slave hostname
option host-name "slave21";
Instead of using your gateway(192.168.1.1) to resolve DNS, enter your ISP's primary DNS server IP.
It's worth a try!
After that I wouldn't have a clue......
User avatar
infinitevalence
Legit Extremist
Legit Extremist
Posts: 2841
Joined: Sat Apr 24, 2004 12:40 pm
Location: Nashville, TN
Contact:

Post by infinitevalence »

yeah its something with the way its attaching to the NFS server for RW, and DHCP i think.... not anything to do with the external gateway, i dont even need internet connections on these as they all load and download from the master NFS server.
"Don't open that! It's an alien planet! Is there air? You don't know!"
Post Reply