vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| I have the possibility of getting p650 for partitioning, but I want to make sure that I have the migration procedure down. I am running the following: #!/bin/sh nim -o allocate -a lpp_source=520_lpp drtest nim -o allocate -a spot=520_spot drtest nim -o allocate -a mksysb=txspf111_mksysb drtest nim -o reset -a force=yes drtest nim -o bos_inst -a source=mksysb -a installp_flags='-agX' drtest nim -o reset -a force=yes drtest nim -o deallocate -a lpp_source=520_lpp drtest nim -o deallocate -a spot=520_spot drtest nim -o deallocate -a mksysb=txspf111_mksysb drtest Seems this should work but the target server is not getting the image through tftp. It seems like the target server is not even sending a bootp broadcast to the nim master. Any thoughts? AIX 5.2.0-2 nim master 100 Mb/s network |
| ||||
| Mike <mikee@mikee.ath.cx> wrote in message news:<102nqak6d859091@corp.supernews.com>... > I have the possibility of getting p650 for partitioning, but I > want to make sure that I have the migration procedure down. > I am running the following: > > #!/bin/sh > > nim -o allocate -a lpp_source=520_lpp drtest > nim -o allocate -a spot=520_spot drtest > nim -o allocate -a mksysb=txspf111_mksysb drtest > > nim -o reset -a force=yes drtest > nim -o bos_inst -a source=mksysb -a installp_flags='-agX' drtest > > nim -o reset -a force=yes drtest > nim -o deallocate -a lpp_source=520_lpp drtest > nim -o deallocate -a spot=520_spot drtest > nim -o deallocate -a mksysb=txspf111_mksysb drtest > > Seems this should work but the target server is not getting the > image through tftp. It seems like the target server is not even > sending a bootp broadcast to the nim master. > > Any thoughts? > > AIX 5.2.0-2 nim master > 100 Mb/s network What output do you get from: lsnim -l drtest (before you issue nim -o bos_inst) lsnim -l drtest (after you issue nim -o bos_inst) Does the server reboot when you issue the "nim -o bos_inst" command Is bootpd running, what is the output of "lssrc -t bootps" Have you enabled system logging ? Then you can see if there are any bootp requests and from which MAC address. I also tend to allocate all resources at one go. e.g. nim -o bos_inst -a boot_client=no -a lpp_source=510_lppsource -a spot=510_spot -a bosinst_data=510_bosinst_data -a source=mksysb -a mksysb=510_mksysb couxmak01 Then issue "bootlist -m normal ent(x); reboot". Steve |