1

I want to serve text based content to 300 people in room, but not allow them to access the Internet. The idea is to reflash a router and run a web server on it. These 300 people connect to the router and can only access the text based content (for about two hours). They can also send back responses, which are then logged.

My biggest question is: With 128 mb of ram and 32 mb of flash memory, as well as a usb stick of whatever sized memory, is it possible to deal with a full 300 people reading and writing to the web server running on the router?

If not, how many routers might be necessary, and what kind of routers should I be looking for?

Other small questions: Do routers typically allow a whole 300 people on? What IP address range am I supposed to be working with to allow more than 255 people?

mdenton8
  • 111
  • 5

1 Answers1

1

It depends on how active 300 people will be. Important thing is not the number of users but a number of concurrent connections. Anyway, Very powerful router such as pfSense can run on 256MB RAM. Since you are serving text based contents and will disallow internet access, I guess the router will be enough to serve them. However, you might want to deploy lightweight web server such as nginx.

To serve more than 255 people, 1) either using bigger subnet such as 255.255.254.0 or 2) using multiple subnets and make firewall rules to allow traffic between them.

Jihun
  • 141