eg.
serid = { 12,15,17,19,23,25 }
Then when you get a rednet message you run a little check on the list.eg.
onlist = false for chk, #serid, 1 do if serid(chk) = p1 then onlist = true break end if onlist == false then rednet.send(p1, "not on access list") end if onlist == true then -- Check if our request is from a pc on our list. if p2 == pass then rednet.send(p1, true) else rednet.send(p1, false) end end
I also have a log on the server that records failed attempts to login and the password they tried. (only on failed attempts) it also logs the Id of the computer, so I can ban the id from the server.



