I use telnet to test email server connectivity between servers.
My server has two interfaces, I'd like to telnet over each.
Basically I'd like to choose source (one of my local ip addresses) AND destination when using telnet.
Is this possible?
I use telnet to test email server connectivity between servers.
My server has two interfaces, I'd like to telnet over each.
Basically I'd like to choose source (one of my local ip addresses) AND destination when using telnet.
Is this possible?
My manpage tells me that
telnet -b <sourceaddress> <destination>
is the winning combination.I feel a little stupid for posting this as an answer, but I'm new so I can't reply to @RussellBallestrini
But you can try
telnet -s <src_addr> <destination>
I'm doing this on OSX, not Red Hat—just thought I throw this out there.