That's indeed the problem Tim.
It should not like this:
config.vm.forward_port("ssh", 30002, 2222, :auto => true);
but like this
config.vm.forward_port("ssh", 22, 30002, :auto => true);
paremeters in order
config.vm.forward_port([forwarding rule name], [guest port to be forwarded], [host forwarded port], [conflict auto resolve]);
I hope it helps.
Cheers