At home, I have Ubuntu server with the UFW firewall. What command do I type to turn on local intranet access to my web server, but keep the outside world out from my DSL modem?
|
feedback
|
migrated from serverfault.com Aug 25 '10 at 13:19
This question came from our site for system administrators and desktop support professionals.
|
I would guess something like: sudo ufw allow from 192.168.1.0/24 to port 80 | |||
|
feedback
|
...where 192.168.1.* is my local NAT routing for my intranet (as in, my workstation is 192.168.1.5 and the subnet mask is 255.255.255.0.). | |||
feedback
|
sudo ufw allow from <ipaddress> to any port <port number>where <ipaddress> would be your internal network and <port number> your webserver port default is 80. – Prix Aug 24 '10 at 23:06