I start a server through Node on a computer, and other devices on LAN can connect to it with
I made this which allows the connections (from ipfw workstation default deny-all):
But I'm looking to make that last
http://192.168.1.150:8888/etc.cgiI made this which allows the connections (from ipfw workstation default deny-all):
Code:
ipfw add '09000' 'forward' '127.0.0.1,8888' 'tcp' from '192.168.1.0/24' 'any' to '192.168.1.0/24' '8888' 'in'
But I'm looking to make that last
any more specific. I tried 80, 443, 8888 all individually and together with 80,443,8888 but couldn't load the webpage from LAN browsers.