Reloading NAT configuration on a running VMWare Server 2.0.2

7,903

Solution 1

it looks like the only way to apply VMWare NAT's new config is to kill the running vmware-natd process and restart it, but i may be wrong (source)

Solution 2

I am working at workstation 10.0.4 , I use the following instructions to make nat.conf to take effect after every change,wihtout rebooting computer.

vmware-networks --stop
vmware-networks --start
Share:
7,903
poldek
Author by

poldek

I currently work in Paris, always around Open Source software, particularly integrating and optimising tools for enterprise customers. My professional interests revolve around Open Source, including directories, server- and networking-tools. While I am a system administrator by profession, I feel little can be achieved without some programming, which is why I mix technical experience from both fields.

Updated on September 17, 2022

Comments

  • poldek
    poldek almost 2 years

    I have a server running VMWare Server 2.0.2. The host is Debian Lenny. I have 15-20 virtual machines running, all attached to a single NAT network (named vmnet8).

    I have configured VMWare's NAT (the vmnet-natd daemon) to forward some incoming to ports to one of the VMs, since it hosts some publicly accessible services. I did this via the file /etc/vmware/vmnet8/nat/nat.conf by adding lines like the following:

    80 = 192.168.100.100:80
    

    This works great, I can reach the web server on the VM at 192.168.100.100 by connecting to the host's IP address.

    Sometimes, I need to add port redirections to this NAT configuration. So, I add a line to the configuration file.

    Now for the question. How do I make the natd process take this new configuration into account? Clearly, restarting the host machine does take it into account, and the newly added port is forwarded. However, this is not an option on this server, so how should one do this without restarting the whole host?

    Thanks for any ideas!

  • poldek
    poldek over 14 years
    Well, that sure worked. Thanks for the tip, I hadn't thought of that (doh). So hackish for such "professional" software...
  • mdeous
    mdeous over 14 years
    i agree, i'd have thought an app like vmware server would provide ways to do this cleanly, but it seems it doesn't
  • poldek
    poldek over 14 years
    Nope, I don't seem to have that script in my VMWare installation. Thanks anyway!