In this section we will configure IIS to only use the second IP address - 192.168.0.4
Note: The process for configuring IIS 5.0 and IIS 6.0 to listen to one IP address exclusively is not the same.
Configuring IIS 6.0
1b. Open a command prompt and type:
net stop http /y
This stops all IIS services.
2b. Next, run the httpcfg.exe utility which is available from the support tools folder on a Windows Server 2003 CD-ROM.
(see \support\tools\support.cab)from the command prompt
httpcfg set iplisten -i 192.168.0.4:80
If the command is successful, you will see the following message at the prompt.
HttpSetServiceConfiguration completed with 0
Note: In some situations it will be necessary to reboot the server after this change but you can try to start the IIS by
net start w3svc
3b. Change to following folder cd\IntePub\AdminScripts and enter run the following command:
cscript adsutil.vbs set /smtpsvc/1/DisableSocketPooling true
Configuring IIS 5 (Windows 2000 Server)
1c. Open a command prompt and browse to the C:\InetPub\AdminScripts folder. Then type:
cscript adsutil vbs set w3svc/DisableSocketPooling TRUE
The first command disables HTTP socket pooling.
2c. Run the second command to disable socket pooling for the SMTP server (if installed).
cscript adsutil.vbs set /smtpsvc/1/DisableSocketPooling true