yes, i get that, but i was just going by his post.
One thing i do on my system though, which helps, is i have 2 ips per jail.
I have one ip which is an alias of the network interface, and i make another ip on a cloned loopback device with lo1
This does seem to make transfers between the jails faster....
i'm pretty sure it's due to the MTU which, on the loopback, is like 16384, vs 1500 on the nic
anyways, to do this i add this to my /etc/rc.conf
Code:
cloned_interfaces="lo1"
ifconfig_lo1="inet 10.0.0.254 netmask 255.255.255.0"
ifconfig_lo1_alias0="inet 10.0.0.1 netmask 255.255.255.0"
ifconfig_lo1_alias1="inet 10.0.0.2 netmask 255.255.255.0"
ifconfig_lo1_alias2="inet 10.0.0.3 netmask 255.255.255.0"
ifconfig_lo1_alias3="inet 10.0.0.4 netmask 255.255.255.0"
ifconfig_lo1_alias4="inet 10.0.0.5 netmask 255.255.255.0"
then in my jail configuration part of the /etc/rc.conf i add both ip's
heres what that part of MINE looks like for 2 of my jails
Code:
jail_enable="YES"
jail_list="wwwjail mysqljail rtorrentjail mediaservjail rtest"
jail_wwwjail_rootdir="/usr/jails/wwwjail"
jail_wwwjail_hostname="www.wonslung-raidz"
jail_wwwjail_ip="192.168.1.16,10.0.0.1"
jail_wwwjail_exec_start="/bin/sh /etc/rc"
jail_wwwjail_devfs_enable="YES"
jail_wwwjail_devfs_ruleset="devfsrules_jail"
jail_wwwjail_mount_enable="YES"
jail_mysqljail_rootdir="/usr/jails/mysqljail"
jail_mysqljail_hostname="mysql.wonslung-raidz"
jail_mysqljail_ip="192.168.1.17,10.0.0.2"
jail_mysqljail_exec_start="/bin/sh /etc/rc"
jail_mysqljail_devfs_enable="YES"
jail_mysqljail_devfs_ruleset="devfsrules_jail"
jail_mysqljail_mount_enable="YES"
i'm not sure if this will help or not, but it does seem to for my system.
i think this was added in 7.2, but i could be wrong