summaryrefslogtreecommitdiff
path: root/README
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixup debian infoMike Christie2008-03-201-4/+14
| | | | | | | | | | | Patch and info from Andrew Moise: Okay, patch is attached. I wound up doing some things differently than I mentioned -- the trouble with KERNEL_TARGET turned out to just be because I hadn't installed the needed headers, and I added the dpkg-divert script as a Makefile target instead of a snippet of code in the docs that people have to cut and paste. I also mentioned the ib_iser situation (which I hope I described accurately).
* sync up README and iscsi.conf comments about node.startupMike Christie2008-03-141-7/+7
| | | | | Since we do not support MCS, we just want to use the node.startup setting. We still support node.conn[0].startup for compat reasons.
* Add some info about the scsi command timer in the READMEMike Christie2008-02-211-8/+27
| | | | Document how to set the scsi command timer in the README.
* Add more checks for invalid record updates.Mike Christie2008-02-211-1/+4
| | | | | | | | | | | Some values like target name or ip address should be changed. This adds some checks in idbm.c for this. Some values like iface bind info should only be modified in iface mode. This patch adds some checks to iscsiadm.c for this. This also adds a log message if we have to log out a session before deleting its record.
* Add options to modify the db manipulation behavior during discoveryMike Christie2008-02-201-3/+71
| | | | | | | | | | | | Instead of overwriting existing node records, you can modify the behavior by passing in different ops. Pass -o new to add new nodes. Pass -o delete to delete stale ones. Pass -o update to update the records of existing nodes. And pass combos of different ops for different behavior. Signed-off-by: Mike Christie <michaelc@cs.wisc.edu>
* fix iface documentationMike Christie2007-09-191-1/+1
| | | | iface configs are in /etc/iscsi/ifaces
* add notice that 2.6.14 and .15 support are brokenMike Christie2007-08-291-3/+8
| | | | | 2.6.14 and .15 support is only for testing. The support is still broken and in development, but the basics work.
* doc iscsi timers for multipath and rootMike Christie2007-08-131-2/+126
|
* fix ipv6 README exampleMike Christie2007-06-271-2/+4
| | | | | The ipv6 example in the README used the -T argument but forgot to pass in a target name.
* add isns unstable warning to READMEMike Christie2007-06-211-0/+3
| | | | | | In the man page we document that the isns iscsiadm and iscsid.conf interface are unstable but not in the README. This just adds the warning to the README.
* fix up iface mode, so it takes care of most of the grunt work and does lots ↵mnc2007-06-121-7/+29
| | | | | | of checks so users cannot really mess things up - hopefully git-svn-id: svn://svn.berlios.de/open-iscsi@861 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* modify iface mode to print out the etc iface info and not the scsi-ml host ↵mnc2007-06-121-3/+6
| | | | | | info and add a work around for older ql4xxx drivers git-svn-id: svn://svn.berlios.de/open-iscsi@854 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* update docs to indicate not to name iface config defaultmnc2007-06-051-0/+4
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@851 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* Support bind by hw address or netdev (ip address is temp disabled because ↵mnc2007-05-301-105/+196
| | | | | | targets are not handling it well) and use the iface argument instead of the actual values git-svn-id: svn://svn.berlios.de/open-iscsi@845 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* Rename iface.name to iface.hwaddress and make transport name part of the ↵mnc2007-04-241-16/+69
| | | | | | iface (driver and hardware are bound). Also merge the -D and -I arguments so they are now -I driver,hwaddress. Also add some basic qla4xxx support. We can rescan/scan it and perform sendtargets through it but it stores the targets it finds in Flash and then logs into all of them autmatically (when we do discovery and later when reload the driver). So qla4xxx support is mostly to make sure we have the --interfae argument right. We will have to decide how to set other params, manage nodes, and if we should move scanning to the kernel and then also move some error recovery code to the kernel (today qla4xxx is calling block directly and is not able to export it iscsi state yet (the beginnings to fix that is in the git tree but we still need to reduce some code duplcation)). qla4xxx behavior and functionality is going to change as we learn more about the hw (what format the flash data is supposed to be in for example). git-svn-id: svn://svn.berlios.de/open-iscsi@816 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* add some discovery compat code. Use --print=1 if you want the tree output, ↵mnc2007-04-241-24/+79
| | | | | | else we get the old style by default git-svn-id: svn://svn.berlios.de/open-iscsi@811 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* For the new op we still had to run it once for every new entry we wanted. If ↵mnc2007-04-241-1/+8
| | | | | | we just wanted to add a new nic entry for every existing node this was a pain. This patch makes it so the new op will traverse the db and add new records if there is a pattern match. TODO: fix up the iterators and merge group login/logout functionality git-svn-id: svn://svn.berlios.de/open-iscsi@810 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* This patch allows you to pass in any record id values (interface, ↵mnc2007-04-241-11/+9
| | | | | | targetname, portal) and iscsiadm will match the values passed in with node db entries or running sessions (depends on the mode) and execute the op on it git-svn-id: svn://svn.berlios.de/open-iscsi@807 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* merge node and session mode ops. session node takes a sysfs id or nothing ↵mnc2007-04-241-2/+6
| | | | | | and node mode takes the node record id values or nothing git-svn-id: svn://svn.berlios.de/open-iscsi@805 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* move --info output to common --print output.mnc2007-04-241-3/+9
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@802 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* from tomo: print ipv6 address with []smnc2007-04-241-0/+9
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@783 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* some doc updatesmnc2007-04-241-27/+148
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@780 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* what is a node in open-iscsi terms (when open-iscsi states node it means ↵mnc2007-02-101-2/+12
| | | | | | portal :)) git-svn-id: svn://svn.berlios.de/open-iscsi@770 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* from tomo: add basic isns supportmnc2007-01-271-2/+11
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@766 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* update readme datemnc2007-01-261-1/+1
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@765 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* add more info to the READMEmnc2007-01-261-53/+98
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@764 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* rm --map and replace with -m session -rmnc2006-11-221-4/+10
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@735 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* add -m session --info commandmnc2006-11-221-1/+1
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@734 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* add -m session --rescan commandmnc2006-11-221-3/+5
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@733 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* fixup login/logout docmnc2006-11-091-2/+2
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@726 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* update README date and mcs infomnc2006-11-081-2/+1
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@723 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* add login/logout all commandsmnc2006-11-081-0/+8
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@722 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* update docs to show that files have movedmnc2006-10-131-8/+8
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@710 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* update README for crc32c changesmnc2006-10-021-2/+2
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@700 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* update READMEmnc2006-08-231-25/+25
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@667 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* from hannes: document how to compile on suse.mnc2006-07-051-0/+7
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@612 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* rm old compat patches and update README and makefile. If we have time in the ↵mnc2006-06-131-9/+1
| | | | | | final release we can add those back, but there is a lot of testing work to be done git-svn-id: svn://svn.berlios.de/open-iscsi@603 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* update README for compat patchesmnc2006-05-011-3/+1
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@564 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* fix some spelling mistakesmnc2006-04-081-2/+2
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@536 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* messed up iscsid.conf automatic startupmnc2006-04-081-1/+1
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@534 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* from danb@voltaire.com: add some red hat and fedora README info about how to ↵mnc2006-04-081-2/+55
| | | | | | mount a parition automatically and login git-svn-id: svn://svn.berlios.de/open-iscsi@533 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* update init scripts and READM for libiscsimnc2006-04-021-4/+4
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@529 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* pauw@o2.ie: update REAMEmnc2006-01-261-22/+52
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@482 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* add new compat patches to support 2.6.11 - 2.6.16-rc1mnc2006-01-171-4/+4
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@463 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* Albert Pauw: README: more usage examplesaaizman2005-10-221-2/+16
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@425 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* Chad Tindel: debian systems packaging codedmitry_yus2005-06-091-1/+4
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@367 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* readme fixdmitry_yus2005-03-311-1/+1
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@209 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* comments and minor fixesdmitry_yus2005-03-171-1/+3
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@192 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* minor fixesopen-iscsi2005-03-021-2/+2
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@151 d7303112-9cec-0310-bdd2-e83a94d6c2b6
* requirements update.open-iscsi2005-02-251-1/+1
| | | | git-svn-id: svn://svn.berlios.de/open-iscsi@125 d7303112-9cec-0310-bdd2-e83a94d6c2b6