http://www.perlmonks.org?node_id=1002760


in reply to MySQL multihomed source IP

Sure, the answer is in the mysql documentation (IIRC host=), see also http://www.ConnectionStrings.com/

Replies are listed 'Best First'.
Re^2: MySQL multihomed source IP
by Anonymous Monk on Nov 07, 2012 at 22:47 UTC

    Actually that won't work.

    If you're using DBD::mysqlPP you need to patch it to take LocalAddr and pass it along to Net::MySQL so it can pass it along to IO::Socket::INET

    bind-address= is supposed to work for libmysqlclient (ie DBD::mysql) but not all versions support this

Re^2: MySQL multihomed source IP
by AtmanActive (Novice) on Nov 08, 2012 at 07:55 UTC
    No, no, and no, host parameter is destination IP, ie to which IP to connect to, but I'm looking for source IP, ie from which IP to connect.