Get real IP address in local Rails development environment

前端 未结 8 565
眼角桃花
眼角桃花 2020-11-30 23:15

I have Rails 2.3.8, Ruby 1.8.7, Mongrel Web Server and MySQL database.

I am in the development mode and I need to find the real IP address

相关标签:
8条回答
  • 2020-11-30 23:25

    I had to do this:

    require 'socket'
    Socket.ip_address_list.detect(&:ipv4_private?)&.ip_address
    
    0 讨论(0)
  • 2020-11-30 23:36

    As far as I can see there is no standard method for getting the remote address of your local machine. If you need the remote address for (testing) your geocoding, I suggest adding 127.0.0.1 to your database table that matches IP addresses with locations.

    As a last resort you could also hard code your remote address. E.g. like this:

    class ApplicationController < ActionController::Base
      def remote_ip
        if request.remote_ip == '127.0.0.1'
          # Hard coded remote address
          '123.45.67.89'
        else
          request.remote_ip
        end
      end
    end
    
    class MyController < ApplicationController
      def index
        @client_ip = remote_ip()
      end
    end
    
    0 讨论(0)
  • 2020-11-30 23:36

    I am testing with Rspec and what I did was:

    request.stub(:remote_ip).and_return('198.172.43.34')
    Instance.stub(:find_by_key).and_return(@instance)
    before = @instance.weekly_statistic.times_opened_by['198.172.43.34']
    
    get :key, :key=>"314C00"
    
    @instance.weekly_statistic.times_opened_by['198.172.43.34'].should == before+1
    

    And it worked like a charm! : )

    0 讨论(0)
  • 2020-11-30 23:37

    I don't think you will get your 'real-ip' on localhost and the reason for this actually lies in TCP/IP.

    The remote ip address depends upon the network the request is being sent to. Since it is a part of TCP/IP to send your IP address when communicating, it always translates to relative IP address that the destination computer may understand. When the request is within your subnet, it is your local IP. The moment it goes out to the network through your service provider, it assumes a global IP, which can be tracked back to the service provider (Note: this is arguable and depends on your network setup).

    So if you are testing locally then it would be 127.0.0.1 as you have experienced. If you are sending it over your local network, it'll be your IP within that network. For example, my machine's IP in my office network is 192.168.1.7, and if I access my app at 3000 port through another computer in the same network, say from 192.168.1.13, then I get the request.remote_ip as 192.168.1.13

    What this is means is, while you are on localhost, 127.0.0.1 is your real IP. And likewise in the example I mentioned, 192.168.1.13 is the real IP for the machine that sent the request.

    0 讨论(0)
  • 2020-11-30 23:38

    Depends on how you access the url.

    If you access the url using http://127.0.0.1/.... or http://localhost/.... , you'll get 127.0.0.1 as the remote ip. If you are on a LAN, use http://{lan-ip}/....

    for e.g. http://172.20.25.210/.......

    0 讨论(0)
  • 2020-11-30 23:41

    This is what I normally do nowadays:

    if Rails.env.production?
      request.remote_ip
    else
      Net::HTTP.get(URI.parse('http://checkip.amazonaws.com/')).squish
    end
    
    0 讨论(0)
提交回复
热议问题