如何在windows xp 上设置路由

Now HOW TO SETUP ROUTE ON WINDOWS XP?
First we open the Control Panel. If you are using the “Category View” to view icons first go to “Performance and Maintenance” and then “Administrative Tools” otherwise go straight to the “Administrative Tools” then open “Services”. On the list find “Routing and Remote Access”, double click on it and set the Startup type to “Automatic” and click OK. Close the Services window and open the registry editor by going to Start > Run… and typing “regedit” without the “ ”. Click OK and in the window expand to the following path: My Computer > HKEY_LOCAL_MACHINE > SYSTEM > CurrentControlSet > Services > Tcpip > Parameters. Now in the list you will see something like “IPEnableRouter”. Double click on it and turn the value from 0 to 1. Now restart your computer.

You must know the names of your adapters you are using. For the tutorial we will use “Wireless Network Connection” for the public NIC and “Local Area Connection” for the private NIC.

Now we open the command prompt and type the following command to install NAT:

netsh routing ip nat install
Now type the next command to add the public interface:

netsh routing ip nat add interface "Wireless Network Connection" full
And the last command to add the private interface:

netsh routing ip nat add interface "Local Area Connection" private
...and the installation is done!