How to run meteor server on a different ip address?

meteor

Solution

According to `netstat -tapn` Meteor/Node.js listens on all available IP addresses on the machine:

tcp        0      0 0.0.0.0:3000            0.0.0.0:*               LISTEN      9098/node

Do you have something like iptables running?

Problem

How can i start meteor server on a different IP address? Currently in the examples am only able to run on a localhost:3000 address.

Original source