Hello. I'm trying to mount an custom implementation of FTPServer using your nuget on a Docker server but I'm facing a lot of problems. One of them is that I want to set this passive address to public endpoint and ports. How can I do this?
I'm trying to:
services.Configure(opt => new SimplePasvOptions()
{
PasvMinPort = 12000,
PasvMaxPort = 12020,
PublicAddress = System.Net.IPAddress.Parse("###publicaddress###")
});
Hello. I'm trying to mount an custom implementation of FTPServer using your nuget on a Docker server but I'm facing a lot of problems. One of them is that I want to set this passive address to public endpoint and ports. How can I do this?
I'm trying to: services.Configure(opt => new SimplePasvOptions() { PasvMinPort = 12000, PasvMaxPort = 12020, PublicAddress = System.Net.IPAddress.Parse("###publicaddress###") });
This doesn't work...
Thanks.