Just for reference, the bridging that occurs on the hosts essentially dumps Ethernet frames onto the local network (the switch) -- the host's don't have any concept of TCP connections between your Linodes and the world. It's just layer-2 bridging.
There is a known issue that affects a few of the hosts, including host5 and host6. Apparently, when someone joins the bridge it blips the bridge long enough to disturb at least some of the people already on the bridge.
I'm scheduling a reboot for host6 and will test the fix. If everything goes well, I'll schedule reboots for the rest of the hosts that are affected as well.
Now, as far as idle ssh connections being timed out, you can try this (worked for me):
Code:
# send keepalive packets every 5 minutes
echo 300 > /proc/sys/net/ipv4/tcp_keepalive_time
#I also added this to my /etc/sshd/sshd_config:
KeepAlive yes
ClientAliveInterval 10
/etc/init.d/ssh restart
logout and reconnect. My idle ssh session remained connected over night.
-Chris