EXPERT RESPONSE
You can accomplish this by opening the Windows Firewall from the control panels and then selecting the Exceptions tab. Click the Add Port button, give the service a friendly name such as FTP, type 21 in the port field and select TCP from the radio buttons. Click OK until you are out of the Windows Firewall dialog. This change should take effect immediately; you will not need to restart your computer.
Alternatively, you can use RegEdit to make this change on your computer or on a remote computer. (You will need administrative rights to do this.)
- Open RegEdit on the PC to which you're logged on.
- Connect to the remote PC if desired.
- Navigate to the following key:
HKEY_LOCAL_MACHINESYSTEM/CurrentControlSet/Services
/SharedAccess/Parameters/FirewallPolicy/DomainProfile
/GloballyOpenPorts/List
- Create a new string (REG_SZ) value. Name it 21:TCP
- Give it the following value: 21:TCP:*:Enabled:FTP
- Close RegEdit.
Note that the Registry entry as defined above will permit FTP access to that workstation from all IP addresses (as indicated by the asterisk).
|