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 9015291
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T03:42:53+00:00 2026-06-16T03:42:53+00:00

How do you check whether a given IP is internal or not using only

  • 0

How do you check whether a given IP is internal or not using only javascript?

For example if you are given an IP of 192.168.1.1 the script should validate this and alert if this is an internal or external IP.

  • 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-16T03:42:55+00:00Added an answer on June 16, 2026 at 3:42 am

    If you mean private just make sure it’s in one of the following ranges:

    Private IP address ranges

    The ranges and the amount of usable IP’s are as follows:

    10.0.0.0 – 10.255.255.255 Addresses: 16,777,216

    172.16.0.0 – 172.31.255.255 Addresses: 1,048,576

    192.168.0.0 – 192.168.255.255 Addresses: 65,536

    Function like this should help:

    function isPrivateIP(ip) {
       var parts = ip.split('.');
       return parts[0] === '10' || 
          (parts[0] === '172' && (parseInt(parts[1], 10) >= 16 && parseInt(parts[1], 10) <= 31)) || 
          (parts[0] === '192' && parts[1] === '168');
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wanted to check whether the variable is defined or not. For example, the
How to check whether a given point is contained in a rectangle using the
Consider a JavaScript method that needs to check whether a given string is in
I need to check whether given binary file has write access or not. File
Can I check whether or not a given pointer points to an object within
Fast RegExp question. I must check whether a given string contains aaa but not
How can I check whether a given string contains a certain substring, using Perl?
Using Java is there an easy way to check whether a given file conforms
How should I check whether a string starts or ends with a given string?
I want to check whether a given file exists in android sd card. I

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.