-
-
Notifications
You must be signed in to change notification settings - Fork 658
/
Copy pathLocalIpAddress.cs
46 lines (35 loc) · 1.24 KB
/
LocalIpAddress.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSharpExamples {
using System.Net;
using System.Net.Sockets;
using FluentFTP;
public static class LocalIpAddress {
public static void LocaIpAddressExample() {
// IP addresses for current host inside myprivatedomain
var localIpAddresses = new[]
{
IPAddress.Parse("10.244.191.143"),
IPAddress.Parse("fcec:177:cfbd:6555:8f8c::1")
};
foreach (var localIpAddress in localIpAddresses) {
// let's say that ftp.myprivatedomain has ipv4 and ipv5 addresses
using var f = new FtpClient("ftp.myprivatedomain", "test", "test");
f.Config.InternetProtocolVersions = localIpAddress.AddressFamily == AddressFamily.InterNetworkV6 ? FtpIpVersion.IPv6 : FtpIpVersion.IPv4;
// Equivalent to lftp's ftp:port-ipv[4|6] and net:socket-bind-ipv[4|6] (see http://manpages.org/lftp)
f.Config.SocketLocalIp = localIpAddress;
{
f.Connect();
Console.WriteLine($"Connected to {f.SocketRemoteEndPoint} from {f.SocketLocalEndPoint}");
foreach (var file in f.GetListing()) {
Console.Out.WriteLine(file);
}
f.Disconnect();
}
}
}
}
}