最新消息:

2015年06月的内容

软件使用

使用curl进行网站投票

王杭州 10年前 (2015-06-01) 3312浏览 0评论

使用bash脚本,配合存储代理的IP地址和端口的文件,实现基于IP地址检验的网站投票,具体代码如下: #! /bin/sh for i in `cat ipaddress_and_ports.txt`; do curl –connect-...

软件使用

sshd_config设置

王杭州 10年前 (2015-06-01) 3393浏览 0评论

将ssh登陆认证方法由密码认证转换为密钥对验证,需要重新设置ssh,方法如下: 修改sshd_config文件 关闭密码认证 PasswordAuthentication no 开启密钥对认证 RSAAuthentication yes Pubkey...