你的位置:国外/美国服务器租用 技术文档 LinuxVPS使用教程 正文
美国服务器出租
  1. 1美国独立服务器10G独享带宽不限流量,欧洲1G带宽独享,不限流量
  2. 2美国100M独享,洛杉矶 32GB内存 英特尔至强CPU,特价:1699元/月
  3. 3美国加州机房100M独享E3-1270,32G内存/96G内存,送KVM,1399元/月
  4. 4美国云服务器,8G内存,服务器CPU,4核心,特价699元/月,16G内存1299元
  5. 5美国G口抗攻击服务器,G口1000M独享带宽抗DDOS攻击服务器(至强Xeon E3 1230)
  6. 6国外G口带宽独享服务器,美国G口独享,欧洲G口独享服务器租用
  7. 7美国圣安娜KT服务器,加州KT服务器租用,KT独立服务器出租(特价799元/月)
  8. 8加州洛杉矶机房,中国访问速度最快的美国机房之一,999元/月,4G内存20M独享
  9. 9美国1G独享带宽,欧洲1G独享带宽租用(视频等大流量网站解决方案)
  10. 10凤凰城机房Phoenix服务器租用:7个机房4核I3,8G内存,30M独享带宽,首月999元
美国VPS主机
  1. 1美国SSD VPS租用,美国西海岸加州洛杉矶SSD VPS服务器,Linux/Windows
  2. 2内华达州VPS,拉斯维加斯VPS,拉斯维加斯服务器,内华达州服务器租用
  3. 3美国东海岸VPS,纽约服务器,曼哈顿云服务器,纽约VPS租用
  4. 4外贸VPS服务器,仿牌空间,仿牌主机,抗投诉VPS(外贸英文商城VPS)SSL证书安装服务
  5. 5美国Psychz电信直连VPS,中国访问速度最快的美国VPS,Psychz机房VPS
  6. 6Camforg专用VPS,美国Camforg多视频聊天软件VPS,Camforg服务器租用
  7. 7美国加州VPS,洛杉矶WebNX机房VPS,加州WN机房Windows VPS
  8. 8美国西雅图VPS,西雅图机房VPS,支持试用的VPS,VPS试用10元/天
  9. 9合租美国服务器,国外服务器合租,高端VPS服务器,完胜低配独立服务器的VPS
  10. 10抗攻击Windows VPS,不怕DDOS攻击的VPS,有攻击不关机,无攻击后2小时内恢复
ssh代理服务器,屏蔽掉不常用的端口
  • ssh代理服务器,很可能被人利用来做坏事,需要屏蔽掉不常用的端口,用到下面端口的,90%都是有不良动机的,这类客户,可以拒绝掉,免得带来灾难。

    iptables -I OUTPUT -p tcp --dport 25 -j DROP
    iptables -I OUTPUT -p tcp --dport 587 -j DROP
    iptables -I OUTPUT -p tcp --dport 465 -j DROP
    iptables -I OUTPUT -p tcp --dport 135 -j DROP
    iptables -I OUTPUT -p tcp --dport 137 -j DROP
    iptables -I OUTPUT -p tcp --dport 138 -j DROP
    iptables -I OUTPUT -p tcp --dport 139 -j DROP
    iptables -I OUTPUT -p tcp --dport 445 -j DROP
    iptables -I OUTPUT -p tcp --dport 500 -j DROP
    iptables -I OUTPUT -p tcp --dport 1701 -j DROP
    iptables -I OUTPUT -p tcp --dport 4500 -j DROP
    iptables -I OUTPUT -p tcp --dport 593 -j DROP
    iptables -I OUTPUT -p tcp --dport 1025 -j DROP
    iptables -I OUTPUT -p tcp --dport 1194 -j DROP
    iptables -I OUTPUT -p tcp --dport 1433 -j DROP
    iptables -I OUTPUT -p tcp --dport 3306 -j DROP
    iptables -I OUTPUT -p tcp --dport 5038 -j DROP
    iptables -I OUTPUT -p tcp --dport 5060 -j DROP
    iptables -I OUTPUT -p tcp --dport 3306 -j DROP
    iptables -I OUTPUT -p tcp --dport 3389 -j DROP
    iptables -I OUTPUT -p tcp --dport 22 -j DROP

    [www.ctohome.com]# service iptables save  - 保存
    Saving firewall rules to /etc/sysconfig/iptables: [  OK  ]

     


    [www.ctohome.com]# iptables -L  - 核查
    Chain INPUT (policy ACCEPT)
    target     prot opt source               destination        

    Chain FORWARD (policy ACCEPT)
    target     prot opt source               destination        
    DROP       tcp  --  anywhere             anywhere            tcp dpts:6880:6899 state NEW

    Chain OUTPUT (policy ACCEPT)
    target     prot opt source               destination        

    DROP       tcp  --  anywhere             anywhere            tcp dpt:ssh
    DROP       tcp  --  anywhere             anywhere            tcp dpt:openvpn
    DROP       tcp  --  anywhere             anywhere            tcp dpt:ms-wbt-server
    DROP       tcp  --  anywhere             anywhere            tcp dpt:mysql
    DROP       tcp  --  anywhere             anywhere            tcp dpt:sip
    DROP       tcp  --  anywhere             anywhere            tcp dpt:5038
    DROP       tcp  --  anywhere             anywhere            tcp dpt:mysql
    DROP       tcp  --  anywhere             anywhere            tcp dpt:ms-sql-s
    DROP       tcp  --  anywhere             anywhere            tcp dpt:blackjack
    DROP       tcp  --  anywhere             anywhere            tcp dpt:http-rpc-epmap
    DROP       tcp  --  anywhere             anywhere            tcp dpt:ipsec-nat-t
    DROP       tcp  --  anywhere             anywhere            tcp dpt:l2tp
    DROP       tcp  --  anywhere             anywhere            tcp dpt:isakmp
    DROP       tcp  --  anywhere             anywhere            tcp dpt:microsoft-ds
    DROP       tcp  --  anywhere             anywhere            tcp dpt:netbios-ssn
    DROP       tcp  --  anywhere             anywhere            tcp dpt:netbios-dgm
    DROP       tcp  --  anywhere             anywhere            tcp dpt:netbios-ns
    DROP       tcp  --  anywhere             anywhere            tcp dpt:epmap
    DROP       tcp  --  anywhere             anywhere            tcp dpt:smtps
    DROP       tcp  --  anywhere             anywhere            tcp dpt:submission
    DROP       tcp  --  anywhere             anywhere            tcp dpt:smtp
    DROP       tcp  --  anywhere             anywhere            tcp dpt:ms-wbt-server

    相关文章:

    Windows下使用ssh代理来访问国外的youtube和twitter/fackbook等网站
    如何设置SSH代理帐号安全性,怎样不允许ssh帐号登录shell?
    申请SSH代理帐号,购买ssh帐号,访问facebook/youtube网站
    禁止webmin用户的ssh权限,限制root不允许ssh,修改ssh端口

     

  • 点这里复制本页地址发送给您QQ/MSN上的好友