LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 04-25-2012, 03:12 PM   #1
kameleon25
LQ Newbie
 
Registered: Feb 2012
Distribution: A little of it all
Posts: 14

Rep: Reputation: Disabled
iSCSI woes on Dell T710 and MD3200i using Centos 5.5 and Xen 4.0.1


Was not sure where this would go so I am asking here. Mods, please feel free to move to the proper forum if not correct.

I have a Dell T710 running Centos 5.5 with Xen dom0 that I am connecting to my Dell MD3200i iSCSI SAN. I have all 4 network cards in a mode4 bond with vlans passing over the bond. I have connected to my SAN succesfully but when I try to tansfer anything I get really low throughput speed, like 8MB to 10MB/sec. I figured with the 4 gig ports bonded I would at least get 1gb/sec (meaning around 120MB/sec). I am trying to move a logical volume from the phyiscal server to the SAN and it is 6TB so I need it to move as fast as possible. Below I have attached a section of my if-scripts from /etc/sysconfig/network-scripts/. To explain some the switch that the machine is plugged into does not support jumbo frames hence the need for the lower than 1500 MTU settings. We have vlan 1 is untagged but vlan2 through vlan20 is tagged. Vlan20 is the SAN network. I have it setup with multipath according to dell's documentation they sent. Is there any tweaking I can do to get better performance? Also when I do transfer anything over to the SAN I keep getting multipath errors and failures.

ifcfg-bond0
Code:
DEVICE=bond0
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
BROADCAST=10.8.1.255
IPADDR=10.8.1.150
NETMASK=255.255.255.0
NETWORK=10.8.1.0
GATEWAY=10.8.1.1
MTU=1496
ifcfg-bond0.2
Code:
DEVICE=bond0.2
VLAN=yes
BRIDGE=br2
BOOTPROTO=none
ONBOOT=yes
TYPE=Ethernet
ifcfg-br2
Code:
DEVICE=br2
TYPE=Bridge
BOOTPROTO=static
ONBOOT=yes
ifcfg-eth0
Code:
# Broadcom Corporation NetXtreme II BCM5709 Gigabit Ethernet
DEVICE=eth0
BOOTPROTO=none
ONBOOT=yes
USECTL=no
MASTER=bond0
SLAVE=yes
MTU=1496
ifcfg-br20
Code:
DEVICE=br20
TYPE=Bridge
BOOTPROTO=static
ONBOOT=yes
ifcfg-br20:1
Code:
DEVICE=br20:1
#TYPE=Bridge
BOOTPROTO=static
IPADDR=192.168.130.54
NETMASK=255.255.255.0
NETWORK=192.168.130.0
ONBOOT=yes
MTU=1492
ifcfg-br20:2
Code:
DEVICE=br20:2
#TYPE=Bridge
BOOTPROTO=static
IPADDR=192.168.131.54
NETMASK=255.255.255.0
NETWORK=192.168.131.0
ONBOOT=yes
MTU=1492
ifcfg-br20:3
Code:
DEVICE=br20:3
#TYPE=Bridge
BOOTPROTO=static
IPADDR=192.168.132.54
NETMASK=255.255.255.0
NETWORK=192.168.132.0
ONBOOT=yes
MTU=1492
ifcfg-br20:4
Code:
DEVICE=br20:4
#TYPE=Bridge
BOOTPROTO=static
IPADDR=192.168.133.54
NETMASK=255.255.255.0
NETWORK=192.168.133.0
ONBOOT=yes
MTU=1492
Code:
[root@xen network-scripts]# ls
ifcfg-bond0     ifcfg-bond0.15  ifcfg-bond0.7  ifcfg-br13    ifcfg-br20:3  ifcfg-br8   ifdown        ifdown-post    ifup-aliases  ifup-ipx     ifup-sit           network-functions-ipv6
ifcfg-bond0.1   ifcfg-bond0.2   ifcfg-bond0.8  ifcfg-br14    ifcfg-br20:4  ifcfg-br9   ifdown-bnep   ifdown-ppp     ifup-bnep     ifup-isdn    ifup-sl
ifcfg-bond0.10  ifcfg-bond0.20  ifcfg-bond0.9  ifcfg-br15    ifcfg-br3     ifcfg-eth0  ifdown-eth    ifdown-routes  ifup-eth      ifup-plip    ifup-tunnel
ifcfg-bond0.11  ifcfg-bond0.3   ifcfg-br1      ifcfg-br2     ifcfg-br4     ifcfg-eth1  ifdown-ippp   ifdown-sit     ifup-ib       ifup-plusb   ifup-wireless
ifcfg-bond0.12  ifcfg-bond0.4   ifcfg-br10     ifcfg-br20    ifcfg-br5     ifcfg-eth2  ifdown-ipsec  ifdown-sl      ifup-ippp     ifup-post    init.ipv6-global
ifcfg-bond0.13  ifcfg-bond0.5   ifcfg-br11     ifcfg-br20:1  ifcfg-br6     ifcfg-eth3  ifdown-ipv6   ifdown-tunnel  ifup-ipsec    ifup-ppp     net.hotplug
ifcfg-bond0.14  ifcfg-bond0.6   ifcfg-br12     ifcfg-br20:2  ifcfg-br7     ifcfg-lo    ifdown-isdn   ifup           ifup-ipv6     ifup-routes  network-functions
[root@xen network-scripts]#
Thanks in advance for any and all pointers.
 
Old 04-26-2012, 02:46 PM   #2
kameleon25
LQ Newbie
 
Registered: Feb 2012
Distribution: A little of it all
Posts: 14

Original Poster
Rep: Reputation: Disabled
I have moved eth2 and eth3 off the bond0 on to their own interfaces and put them on vlan20 for the SAN. I have also plugged them directly into the switch that the SAN is on so I can enable jumbo frames. However now there is no bonding or anything. Granted I am fighting other issues with getting it talking to the SAN but I am wondering what is the best way to get this working for maximum availability and performance?
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] No success on creating custom initrd with xen and iscsi for netboot Blue_Ice Linux - Server 0 01-26-2011 09:10 AM
Good Idea?: OpenFiler iSCSI Target (using PM) for >5TB Nexenta ZFS (inside Xen) ript107 Linux - Virtualization and Cloud 0 10-28-2010 04:03 PM
JBOD + ISCSI + NFS + XEN + W2K3 implementation question? jessemirza Linux - Server 1 02-01-2010 08:18 PM
LXer: Xen Live Migration Of An LVM-Based Virtual Machine With iSCSI On Debian Lenny LXer Syndicated Linux News 0 04-30-2009 04:12 PM
LXer: Install Fedora 10 PV DomU at Xen 3.3.1 CentOS 5.2 & Xen 3.3.0 Intrepid Server v LXer Syndicated Linux News 0 01-10-2009 11:40 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 01:04 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration