First of all, I would recommend that you disconnect your router immediately. You're using your router as a switch in a "weird way". The weirdness here is that your router is still running a DHCP server, potentially serving IPs to other computers on your school's network.
It's likely that your network administrator already has filters in place to prevent students like you from running DHCP servers and serving IPs to other students. Whether or not they do, they're going to notice this and they're going to be annoyed with you.
Even if your router's DHCP server isn't causing issues for the network at large, it could cause issues for you. Your devices will probably get IP addresses assigned by your DHCP server, not the school network's. If the school network uses the same IP block (10.0.0.0/8, 192.168.0.0/16, or whatever) then your router may assign your device an IP already owned by another student's computer, and that will also cause havoc and/or annoy your network admin. If you do want to continue using your router as a simple switch, disable the DHCP server.
Now, on to the question of why plugging the router's WAN port into the network drop in your room didn't work. At the face of it, this could work, and it could allow you to run multiple devices in your room. Be careful with this, though. If this is disallowed by your network admin's policies, then doing this could anger your network admin. At my college, we had to pay an extra (nominal) fee to hook up multiple devices, and I would recommend you do so rather than try to hide them. Don't annoy your network admin.
It's possible that you could hide NATing like this from your network admin as you suggested, but there are a few other ways for them to tell aside from packet inspection:
- Your router has a MAC address that has a manufacturer ID that would heavily suggest to interested parties that it is a router and not a computer.
- Your router can fairly easily be fingerprinted by tools like nmap, which would also suggest that it's a router.
Why didn't it work? I can think of a couple of potential issues. First, your network admin may require registering devices for use on the network, so they might be disallowing your router from communicating. They could also have rules to deny all MAC addresses for devices made by popular router manufacturers in an attempt to enforce a no-NAT policy.
You could also have a simple IP range conflict. If your router is using, say, 10.0.1.0/24 for its internal network, and your school's network is 10.0.0.0/8, your router will get very confused. I think this may well be the problem here because the addresses your router is assigning your devices now do allow them to communicate on the school network. Newer routers are starting to detect this situation and modify their configuration automatically, but older ones won't. You'll need to change your router's internal network to a non-conflicting IP range. In the example above, 192.168.1.0/24 would work.
In summary, don't break the rules and don't anger your network admin. Remember that you may be at this school for a few years and that internet access is important to you. You probably don't want to make your network admin remember your name.