It is possible to obtain the client IP address using the LocalEndPoint
property after the client Ftp object is connected to the FTP server as follows:
using System.Net;
using Rebex.Net;
Ftp client = new Ftp();
client.Connect("serverName");
IPEndPoint lep = (IPEndPoint)client.LocalEndPoint;
IPAddress lip = lep.Address;