0

I am working on creating a MySQL database server for one of my school projects. I want to allow my teammates to access the server remotely using school network, but I discovered that their IP addresses varied whenever they reconnected to the school network, and it won't be desirable to manually add all the new IP addresses to the user table. Is there any trick I could use to overcome this problem?

1
  • If you want to permit access from an undetermined set of IP addresses while not exposing your database server to the whole internet, a VPN might be the answer. Commented Dec 6, 2016 at 3:15

1 Answer 1

1

you can use % as a wildcard to summarize source nets ands limit your attack vector.

so instead of 192.168.68.34, use 192.168.68.% assuming they use a /24 address space for vpn.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.