#================================================================== # LOCAL IP CONFIGURATION SCRIPT # # Lines that begin with a '#' (like this one) are COMMENTS # # #================================================================== # # To reset the entire configuration, uncomment the following line #netsh interface reset all # # # #================================================================== # # To setup for DHCP, uncomment the following 3 lines #interface ip set address name="Local Area Connection" dhcp #interface ip set dns name="Local Area Connection" dhcp #interface ip set wins name="Local Area Connection" dhcp # # # #================================================================== # # OR, to set the ip adress, with no gateway, uncomment and edit the following line: #interface ip set address name="Local Area Connection" static 010.000.000.009 255.255.255.000 none # #Where: # IP Address -----------------------------------------^^^^^^^^^^^^^^^ # Subnet Mask --------------------------------------------------------^^^^^^^^^^^^^^^ # # OR, to set the ip adress, with a gateway, uncomment and edit the following line: #interface ip set address name="Local Area Connection" static 010.000.000.009 255.255.255.000 010.000.000.001 1 # #Where: # IP Address -----------------------------------------^^^^^^^^^^^^^^^ # Subnet Mask --------------------------------------------------------^^^^^^^^^^^^^^^ # Gateway ----------------------------------------------------------------------------^^^^^^^^^^^^^^^ # Gateway Metric -------------------------------------------------------------------------------------^ # # # #================================================================== # # OR, to set the dns addresses to none, uncomment the following line: #interface ip set dns name="Local Area Connection" none both # # # OR, to set the primary dns address, uncomment and edit the following line: #interface ip set dns name="Local Area Connection" static 010.000.000.001 primary # # # #================================================================== # # OR, to set the wins server address to none, uncomment the following line: #interface ip set wins name="Local Area Connection" static none # # # OR, to set the wins server address, uncomment and edit the following line: #interface ip set wins name="Local Area Connection" static 010.000.000.001 # # # # THE END OF SETTINGS #==================================================================