I'm wondering if packet sniffing is a risk on my VPS.
Is it always a risk or are their precautions a host vendor can take? e.g. a switched network etc.
If I wanted to ask my host what precautions they take, what questions should I ask?
EDIT
Thanks for everyone's feedback.
I suppose what I was wondering if there are any specific packet sniffing risks associated with a typical VPS setup. But I suppose 'typical' makes this question to general, so instead what would help a VPS setup less prone to packet sniffing (other than the things I can do myself e.g. https / ssh) - perhaps the way the VPS network is configured? The host is using kvm.
sudo tcpdump -e -i eth0 -n | grep -vcat /sys/class/net/eth0/address`, which checks eth0 for incoming packets in promiscuous mode (by default) looking at the link layer headers (-e) without resolving IP addresses (-n) and then searches through for lines that don't contain your MAC address. – dr jimbob Oct 03 '13 at 20:05