First of all, when you say you connect to your mother's computer, can you describe the hardware setup?
It is mostly likely one of two setups:
Internet \ ISP
|
|
Modem
|
|
V (68.106.130.107)
Mom's Computer (With two network connections)
^ (192.168.2.??)
|
|
| Private LAN
|
v (192.168.2.??)
Your Computer
With the above type of configuration, a mud would work most effectively if it was hosted on your mother's computer. It's been a long time since I've worked with network tables, but it may be possible to forward incoming packets from the internet, through your mother's computer, and on to your computer. This would only work effectively if you mother's computer was always on, or at least on when you want to run the mud. Since that's the case, like I said, easier to just host it on your mother's computer.
That kind of network setup which shares the internet through a single computer acting as a gateway is someone archaic for home networks. One of the main drawbacks is that the gateway computer must be up and running for any other computer on the LAN to have internet access.
The more popular way to share the internet among a private home network looks like this:
Internet \ ISP
|
|
Modem
|
|
V (68.106.130.107)
Router (Usually with a dedicated "uplink" port to the modem)
^ (192.168.2.??)
|
|
[--- LAN ----------- LAN ---]
| |
| |
v (192.168.2.??) v (192.168.2.??)
Mom's Computer Your Computer
This is the popular way that home networks are set up these days. The advantages are that any computer can have access to the internet, even if all the other computers on the LAN are turned off. Also, the Router will log into your ISP for you, so you don't need to run login software on any computer. Also, the router acts as a firewall.
With this kind of configuration, it is fairly straightforward to log into your router (usually using your web browser) and configure it to forward incoming packets [from the internet] on a certain port to a specific computer on the LAN.
-----------------------------------
Anyway, in either case, I would probably advise that you configure your MUD server to allow connections on two ports. You could have one dedicated to external connections from the internet, and another for internal connections from the LAN.
Ok... So, you were not clear in your request for help, which kind of network setup you have. Is it one of the two I've shown? |