Last Update: Dec 03, 2024 | Published: Jan 07, 2009
As you already know by now, in Windows Server 2008, Server Core installation does not include the traditional full graphical user interface (GUI). Therefore, once you have configured the server, you can only manage it locally at a command prompt, or remotely using a Terminal Server connection. A third management option is to manage the server remotely using the Microsoft Management Console (MMC) or command-line tools that support remote use.
Read more about Server Core on my “Understanding Windows Server 2008 Server Core” article.
One of the major pains of managing such a GUI-stripped installation is the configuration of the Windows Advanced Firewall settings. Without properly configuring these rules, you will find it extremely difficult to remotely manage your server.
In this article, I assume that you have already configured your server core with the bare minimum requirements to operate in a network. These requirements are:
You should, but are not required to, also join the server to your domain.
All of the above can be accomplished by following the “Configuring Windows Server 2008 Server Core Basic Networking Settings” article.
Next, in order to properly configure Server Core to allow you to control its Firewall settings remotely, via GUI, follow these steps:
On your Server Core machine, at a command prompt, type the following:
netsh advfirewall set currentprofile settings remotemanagement enable
This will allow you to control the Firewall’s settings from a remote MMC snap-in.
You can always run the following command in order to disable this option:
netsh advfirewall set currentprofile settings remotemanagement disable
You can save the current MMC window for future use. As long as you do not change the settings on step #1, or change the server’s IP Address (if you’ve used an IP Address to connect to it in the first place), it should continue working for as long as you want.
Summary
Running Server Core requires manual control of many settings, and without proper Firewall configuration you may find it hard to remotely connect to it. This article showed you how to configure the Server Core server in order to remotely connect and configure the Windows firewall component.
Got a question? Post it on our Windows Server 2008 forums!