To ensure a Microsoft Windows Small Business Server (SBS) 2003 system is functioning as a VPN server, take the following steps:
- Click on Start.
- Choose All Programs.
- Choose Administrative Tools.
- Choose Routing and Remote Access.
- Right-click on the server name and choose Properties.
- Under the General tab, ensure check "Remote access server" is checked.
- Click on OK.
- You can then close the Routing and Remote Access window.
You can also verify that the systems is functioning as a VPN server by
obtaining a command prompt and issuing the command netstat -a | find
"pptp"
. You should see a "LISTENING" line displayed indicating the
system is listening on the
Point-to-Point Tunneling Protocol (PPTP) connection.
C:\>netstat -a | find "pptp" TCP ANDY:pptp ANDY.example.lan:0 LISTENING
TCP
port 1723 is used for PPTP, which you can see if you use netstat -an
instead of netstat -a
, so that numbers are displayed
rather than text descriptions for ports. If a VPN connection is active
at the time you issue the command, you will see the remote IP address
displayed.
C:\>netstat -an | find "1723" TCP 0.0.0.0:1723 0.0.0.0:0 LISTENING TCP 192.168.0.8:1723 74.125.228.67:49359 ESTABLISHED UDP 0.0.0.0:21723 *:*
If you wish to monitor VPN connections on the SBS 2003 sever, see Checking User VPN Connections on SBS 2003.