On 07/28/2011 06:49 PM, Farhan Ahmed wrote: > Thanks Mike for your help. Here is the attached debug without following > patch. I will send another debug after the patch installed > > I changed the iface file to remove the mac address now it looks like > > [root@nfs02 ~]# more /etc/iscsi/ifaces/eth3 > # BEGIN RECORD 2.0-872 > iface.net_ifacename = eth3 > iface.transport_name = tcp > # END RECORD > > But iscsiadm is not trying to discover via eth3 and it is giving the > following message you will find in the debug > > Getting priority for eth2 returned -5 >
That error can be ignored. It is just debugging info. In the log it shows that bounded to eth3 and eth6 ok and disocvered ok. The command you are running is wrong iscsiadm -m discovery -t st -p 192.168.42.190 -l eth3 -d 8 eth3 is just ignored here and we try to use all interfaces. You have to pass in the iface with -I iscsiadm -m discovery -t st -p 192.168.42.190 -I eth3 -d 8 Also just forget -l in the discovery command for now. -- You received this message because you are subscribed to the Google Groups "open-iscsi" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/open-iscsi?hl=en.
