Vee,
There is no OS yet. I'm trying to create a storage connection in XenServer 4.1 prior to installing VM's.
Main Topics
Browse All TopicsThis is my first time installing XenServer and I am having troubles. Specifically, I need assistance on creating an iSCSI connection. The iSCSI device is a Dell MD3000i, which has it's own separate LAN. The XenServer has a total of 6 network connections. 4 to the primary LAN, 2 to the iSCSI LAN - and this is where I think Im running into problems. I don't see anywhere in XenCenter where I can configure these two lan connctions.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
The solution wasn't related to iSCSI configuration on either side. The issue was with the separate LAN created for the iSCSI network. By default, only the first NIC in XenServer is configured. The others must be configured manually:
Network interface configurations are defined in files stored in the /etc/sysconfig/network-scr
When XenServer Host is installed on a machine with multiple NICs, only the interface selected as the management NIC will be configured with an IP address. The NIC configurations for the additional interfaces will be present in /etc/sysconfig/network-scr
IPADDR=<ip address>
to the appropriate ifcfg-xenbrn file
If you add a new network interface to a XenServer Host, copy an existing pair of ifcfg-ethn and ifcfg-xenbrn files and edit them appropriately.
If a network interface is configured to get its network parameters from a DHCP server, its ifcfg files might be something like the following:
DEVICE=eth1
ONBOOT=yes
TYPE=Ethernet
HWADDR=00:15:60:95:4f:d0
BRIDGE=xenbr1
check_link_down() { return 1 ; }
DEVICE=xenbr1
ONBOOT=yes
TYPE=Bridge
DELAY=0
STP=off
BOOTPROTO=dhcp
check_link_down() { return 1 ; }
If a network interface is configured with static network parameters, it needs to have IP address, gateway, and netmask specified explicitly in its ifcfg-xenbrn file:
DEVICE=xenbr1
BOOTPROTO=none
ONBOOT=yes
TYPE=Bridge
NETMASK=255.255.255.0
IPADDR=10.100.2.6
GATEWAY=10.100.2.1
PEERDNS=yes
DELAY=0
STP=off
check_link_down() { return 1 ; }
The ONBOOT tells the system to enable the network device when the computer is booted up. To disable an existing network interface, edit its ifcfg file to that the ONBOOT parameter is set to no:
ONBOOT=no
You can also disable an existing NIC by renaming or deleting its ifcfg file.
The comment above is incorrect. 5.0 has the same problems. It is thoroughly confusing as to why it is quite so hard for Xenserver to both manage and allow a different ips for storage, particularly when it is their best practices. (same best practices pretty much for everyone).
http://support.citrix.com/
Business Accounts
Answer for Membership
by: mwecomputersPosted on 2008-07-28 at 10:49:32ID: 22105250
I am more familiar to the Xen Open Source Version (i.e. bundled with RHEL/CentOS). I found this article that might shed some light on setting up iSCSI and XenServer 4.
article/CT X116541
How to Set Up Open iSCSI on a Dell MD3000i with XenServer 4 (Document ID: CTX116541)
http://support.citrix.com/