Port Knocking for Ubuntu 14.04 Server OS:ubuntu 14.04 server 原理简单分析: 端口敲门服务,即:knockd服务.该服务通过动态的添加iptables规则来隐藏系统开启的服务,使用自定义的一系列序列号来“敲门”,使系统开启需要访问的服务端口,才能对外访问.不使用时,再使用自定义的序列号来“关门”,将端口关闭,不对外监听.进一步提升了服务和系统的安全性. 1.安装knockd #apt-get install update #apt-ge…
1. sudo apt-get update 2. sudo apt-get install vsftpd 3. adduser sammy Assign a password when prompted and feel free to press "ENTER" through the other prompts. FTP is generally more secure when users are restricted to a specific directory.vsftp…
1.创建Dockerfile文件(如果在Windows下编辑文件,一定要将格式转化为Linux格式文件,否则将导致Linux下查看文件每行多一个^M) # Pull base image FROM ubuntu:14.04 MAINTAINER shencq "shencq@g-soft.com.cn" # update source RUN echo "deb http://archive.ubuntu.com/ubuntu trusty main universe&quo…