beanstalkd -l 10.1.0.62 -p 11300
beanstalkd -l 0.0.0.0 -p 11300
beanstalkd: net.c:125 in make_server_socket: bind(): Cannot assign requested address beanstalkd: main.c:64 in main: make_server_socket()
On the first server, with IP 10.1.0.61, you are trying to listen on an IP address that the server does not own.
On the second server, you are listening on all the local IP addresses (0.0.0.0) that are available.
If you know where the worker is running, when you send the job to Beanstalkd, you can arrange for your code to connect to the appropriate Beanstalkd daemon. How that is done depends on your client library.