摘要:
在这里 不在这里 还有什么 在这里
阅读全文
posted @ 2017-07-22 10:23
IMFY
阅读(123)
推荐(0)
摘要:
公司要搭建一个邮件服务器,方便内部邮件的发送。而且要求每位员工都可以使用自己的账号和密码。领导将这份工作交给我,不过,这可难不倒我。只要借助Windows Server 2003就可以轻松建起内部邮件服务器。 1.在服务器上安装pop3、smtp、nntp、dns。 开始-控制面板-添加/删除win
阅读全文
posted @ 2016-05-11 16:22
IMFY
阅读(557)
推荐(0)
摘要:
#include <iostream>using namespace std; int main() { cout << "!!!Hello World!!!" << endl; // prints !!!Hello World!!! return 0;} #include <iostream>us
阅读全文
posted @ 2016-04-08 17:41
IMFY
阅读(180)
推荐(0)
摘要:
webbench最多可以模拟3万个并发连接去测试网站的负载能力,个人感觉要比Apache自带的ab压力测试工具好用,安装使用也特别方便,并且非常小。 主要是 -t 参数用着比较爽,下面参考了张宴的文章: 1、适用系统:Linux 2、编译安装: [root@hexuweb102 ~]$wget ht
阅读全文
posted @ 2016-03-30 20:39
IMFY
阅读(507)
推荐(0)
摘要:
今天在电脑上安装了WIRESHARK软件,在设置interface 时提示"There are no interfaces on which a capture can be done" 提示没有任何一个网络接口准备好。此提示明显是不对的, 我的网卡明明可以正常上网,网络接口怎么会没有准备好呢? 想
阅读全文
posted @ 2016-03-25 14:44
IMFY
阅读(264)
推荐(0)
摘要:
1、修改sshd_config文件,命令为:vi /etc/ssh/sshd_config 2、将#PasswordAuthentication no的注释去掉,并且将NO修改为YES //我的kali中默认是yes3、将#PermitRootLogin yes的注释去掉 //我的kali中默认去掉
阅读全文
posted @ 2016-03-23 13:16
IMFY
阅读(416)
推荐(0)
摘要:
解决方法: 1) 以root身份,chmod +w /etc/ssh/sshd_config 2) vi /etc/ssh/sshd_config 3) 将PermitRootLogin no改成PermitRootLogin yes 4) service sshd restart
阅读全文
posted @ 2016-03-23 11:19
IMFY
阅读(187)
推荐(0)
摘要:
openssl 安装可参照之前文章 1、mkdir /etc/ssl/xip.ioopenssl genrsa -out /etc/ssl/xip.io/xip.io.key 1024openssl req -new -key /etc/ssl/xip.io/xip.io.key -out /etc
阅读全文
posted @ 2016-03-22 11:11
IMFY
阅读(961)
推荐(0)
摘要:
第一章 1、下载地址:http://www.openssl.org/source/ 下一个新版本的OpenSSL,我下的版本是:openssl-1.0.0e.tar.gz 可以通过#wget http://www.openssl.org/source/openssl-1.0.1g.tar.gz 获得
阅读全文
posted @ 2016-03-22 10:53
IMFY
阅读(2583)
推荐(0)
摘要:
root@debian:/# vi /root/.bashrc #export PS1='\h:\w\$ 'export PS1='\[\033[1;32;40m\]\u@\h:\w\$ \[\033[0m\]'umask 022 # You may uncomment the following
阅读全文
posted @ 2016-03-16 20:31
IMFY
阅读(596)
推荐(0)