Getting IP address through Ruby On Rails

Hi,

Can Anyone tell me how to get the IP address of the system through rails application?

The system’s IP on which the application running

Thanks,

Hi,    Can Anyone tell me how to get the IP address of the system
through rails application?   The system's IP on which the application running

Well request.host tells you the host (which isn't quite the same
thing). Obviously you can grep the output of ifconfig -a but that
might not be entirely helpful (eg on the servers that we rung that
would return several ip addresses).

Fred

Thank You Fred it worked ...