Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8838819
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T10:05:51+00:00 2026-06-14T10:05:51+00:00

I have an FTP server where it is returning an invalid IP Address for

  • 0

I have an FTP server where it is returning an invalid IP Address for a PASV command. Filezilla automatically detects this. How do I validate an IP Address in C# to make sure it is routable?

Here is what filezilla has in the log:
Command: PASV
Response: 227 Entering Passive Mode (10,46,169,44,21,124).
Status: Server sent passive reply with unroutable address. Using server address instead.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T10:05:52+00:00Added an answer on June 14, 2026 at 10:05 am

    For checking private addresses(biggest subset of non-routable addresses) you could something like:

    public static bool IsPrivateAddress(this IPAddress addr)
    {
        if(addr.AddressFamily == System.Net.Sockets.AddressFamily.InterNetworkV6)
        {
            return addr.IsIPv6LinkLocal || addr.IsIPv6SiteLocal;
        }
        var bytes = addr.GetAddressBytes();
        return
            ((bytes[0] == 10) ||
            ((bytes[0] == 192) && (bytes[1] == 168)) ||
            ((bytes[0] == 172) && ((bytes[1] & 0xf0)==16)));
    }
    

    there are more non routable addresses (e.g. loopback, multicast, and experimental blocks) but it seems unlikely you would see those.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have a ftp server that uses a serve_forever command. this ftp service is
I have this method to transfer files using a FTP Server: private void TransferNeededFiles(IEnumerable<string>
I already have code for a ftp server. I am following this code. Now
I have an FTP server, but don't know the command to upload from a
I have xml files been imported onto an FTP server. This is stored in
I have some date returned from FTP server like this Aug 28 11:03 Aug
I am trying to connect to FileZilla ftp server on my VPS. I have
I have zip file in ftp server,this zip file contain more then one xml
I have a FTP server which I use for Linux repository for RPM packages.
I have to upload a file to an FTP server. The filename contains special

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.