zoukankan      html  css  js  c++  java
  • WINDOWS2008 设置FTP防火墙规则后被拦截的解决办法

    阅读原文:http://www.yzswyl.cn/blread-1614.html

    配置FTP站点后,开启防火墙后无法连接,添加了21端口,还是不行

    解决办法:

    在cmd中输入:

    1、sc sidtype ftpsvc unrestricted(将ftp服务的注册卸载)

    2、net stop ftpsvc & net start ftpsvc(重启ftp服务)

    3、netsh advfirewall firewall add rule name="FTP for IIS7" service=ftpsvc action=allow protocol=TCP div=in(开启所有ftp端口监听)

    4、netsh advfirewall set global Statefulftp disable(使防火墙不拦截所有ftp服务的访问)

    输入以上命令即可;

    原文:

    Windows Firewall and secure FTP (FTPS) traffic

    SSL traffic will not get any help from the firewall filter for FTP. As a matter of fact it will (most likely) prevent SSL from working. So we have to look for other options on how to enable it.

    The easiest way to configure Windows Firewall to allow FTPS traffic is to put the NT service for FTP7 on the inbound exception list. The NT Service name is "Microsoft FTP Service" or "ftpsvc". This service is hosted in generic service process host called svchost.exe so it is not possible to put it on the exception list thought the program exception.

    Warning: FTPSVC service doesn’t listen to any ports other than configured endpoints for ftp sites and data connection ports that are setup for data transfers. But you should double check the listening endpoints for FTPSVC by using netstat –n –a –o. The –o switch allows listing the process ID (or PID) of the listening process. Find out the PID for FTPSVC and check the listening endpoints.

    The following 4 steps will allow both non-secure and SSL FTP traffic through firewall.

    1) FTPSVC service has to get tagged with FTPSVC service SID. It is new security feature introduced for Vista / Windows 2008. "Microsoft FTP Publishing Service for IIS 7.0 RC0" doesn’t have service SID enabled by default so the following command line has to be run to enable service SID.

    sc sidtype ftpsvc unrestricted

    Note: Changing of sidtype will not be necessary in future releases of Microsoft FTP Publishing Service for IIS 7.0 after RC0 release

    2) Restart ftpsvc service for the previous step to take effect

    net stop ftpsvc & net start ftpsvc

    3) Setup Windows Firewall to allow "ftpsvc" service to listen on all ports it opens.

    netsh advfirewall firewall add rule name="FTP for IIS7" service=ftpsvc action=allow protocol=TCP dir=in

    4) Make sure that FTP filter for Windows Firewall is disabled

    netsh advfirewall set global Statefulftp disable

    Warning: Do not use active FTP connections with SSL if client is behind NAT. It will not work.

    参考地址http://blogs.iis.net/jaroslad/archive/2007/09/29/windows-firewall-setup-for-microsoft-ftp-publishing-service-for-iis-7-0.aspx

  • 相关阅读:
    为什么重写equals方法还要重写hashcode方法?
    提高数据库处理查询速度
    ibatis缓存初探(1)
    java四种数组排序
    前台将勾选的多个属性放到一个value里面,是一个字符串,传到后台
    Apache与Tomcat整合
    web服务器和应用服务器概念比较
    ibaits与spring整合的心得
    spring3.0的jar包详解
    JAVA:23种设计模式详解(转)2
  • 原文地址:https://www.cnblogs.com/xuejie/p/2803812.html
Copyright © 2011-2022 走看看