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

  • SEARCH
  • Home
  • 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 1035539
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T14:33:29+00:00 2026-05-16T14:33:29+00:00

when I do this ip = request.env[REMOTE_ADDR] I get the client’s IP address it

  • 0

when I do this

ip = request.env["REMOTE_ADDR"]

I get the client’s IP address it it. But what if I want to validate whether the value in the variable is really an IP?
How do I do that?

Please help.
Thanks in advance. And sorry if this question is repeated, I didn’t take the effort of finding it…

EDIT

What about IPv6 IP’s??

  • 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-05-16T14:33:30+00:00Added an answer on May 16, 2026 at 2:33 pm

    Why not let a library validate it for you? You shouldn’t introduce complex regular expressions that are impossible to maintain.

    % gem install ipaddress
    

    Then, in your application

    require "ipaddress"
    
    IPAddress.valid? "192.128.0.12"
    #=> true
    
    IPAddress.valid? "192.128.0.260"
    #=> false
    
    # Validate IPv6 addresses without additional work.
    IPAddress.valid? "ff02::1"
    #=> true
    
    IPAddress.valid? "ff02::ff::1"
    #=> false
    
    
    IPAddress.valid_ipv4? "192.128.0.12"
    #=> true
    
    IPAddress.valid_ipv6? "192.128.0.12"
    #=> false
    

    You can also use Ruby’s built-in IPAddr class, but it doesn’t lend itself very well for validation.

    Of course, if the IP address is supplied to you by the application server or framework, there is no reason to validate at all. Simply use the information that is given to you, and handle any exceptions gracefully.

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

Sidebar

Related Questions

I was trying to perform a get in my TestCase like this: request.env['CONTENT_TYPE'] =
I'm trying to make this request to the RunKeeper API : GET /user HTTP/1.1
I want to make a HTTP Post request from C#. This request has a
I'd like to do this : Simple request to the server; Put a variable
I want to imitate the following SOAP request using Zend Framework but I don't
I had code like this in Ruby: @clientipaddress = request.env[HTTP_CLIENT_IP] if (@clientipaddress == nil)
I'm using savon 0.9.7 and ruby 1.8.7, I make this request: client = Savon::Client.new
I need how to get individual values from following output: @auth_hash = request.env['omniauth.auth'] <p><%=
I set a session like this: request.session['mykey']= 33 How do I clear it? I
I have code that does a web-service request. While doing this request I need

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.