码迷,mamicode.com
首页 >  
搜索关键字:iptables vsftpd    ( 6661个结果
Linux运维工程师面试题整理
1. Nginx 反向代理,负载均衡,动静分离,工作原理及优化 nginx配置反向代理。 vim Nginx.conf Server模块中配置 Listen 80 Server_name ip; 在server段里面的location加上proxy_pass http://ip:端口; Nginx配 ...
分类:系统相关   时间:2020-06-05 22:53:43    阅读次数:204
Linux搭建FTP服务器
一、安装vsftpd 1、使用yum安装 yum install -y vsftpd 2、新增用户 useradd ftpuser 3、修改用户密码 echo "123456" | passwd ftpuser --stdin 4、限制该用户仅能通过FTP访问 限制用户 ftpuser只能通过 FT ...
分类:系统相关   时间:2020-06-05 21:29:26    阅读次数:109
Linux学习98 Linux防火墙iptables扩展匹配进阶
一、iptables扩展模块(续) 1、state a、The "state" extension is a subset of the "conntrack" module."state" allows access to the connection tracking state for thi ...
分类:系统相关   时间:2020-06-04 18:06:53    阅读次数:85
Centos7防火墙使用命令
Centos7防火墙命令
分类:其他好文   时间:2020-06-04 15:35:27    阅读次数:52
Linux 常用命令
创建文件夹: mkdir name 删除文件夹下所有内容 : rm -rf * 复制文件夹下所有内容到指定文件夹 cp -r /etc/html/web/* /etc/html/web2/ 开放指定端口: iptables -I INPUT -p tcp --dport 8888 -j ACCEPT ...
分类:系统相关   时间:2020-06-03 15:31:09    阅读次数:59
docker ftp配置多个用户
1.拉取镜像 sudo docker pull fauria/vsftpd 2.1 创建单用户ftp启动ftp容器,并且生成zhangsan ftp虚拟账号(只能使用ftp登录) docker run -d -p 20:20 -p 21:21 -p 21100-21110:21100-21110 - ...
分类:其他好文   时间:2020-06-02 18:53:59    阅读次数:195
centos6.8 防火墙简单操作
1.基本操作 # 查看防火墙状态 service iptables status # 停止防火墙 service iptables stop # 启动防火墙 service iptables start # 重启防火墙 service iptables restart # 永久关闭防火墙 chkco ...
分类:其他好文   时间:2020-06-02 18:44:01    阅读次数:58
Linux命令之防火墙
1:查看防火状态 systemctl status firewalld service iptables status 2:暂时关闭防火墙 systemctl stop firewalld service iptables stop 3:永久关闭防火墙 systemctl disable firew ...
分类:系统相关   时间:2020-05-31 23:16:44    阅读次数:121
Linux常用命令
linux防火墙的相关命令 一、iptables防火墙(需要安装防火墙sudo apt-get install firewalld命令查看插件) 1、基本操作 # 查看防火墙状态 service iptables status # 停止防火墙 service iptables stop # 启动防火 ...
分类:系统相关   时间:2020-05-31 13:08:40    阅读次数:56
防火墙iptables
#防火墙iptables ##四表五链: iptables:应用层内置控制防火墙的工具 netfilter:防火墙功能的具体实现,是内核空间的功能模块 通过iptables工具设置规则,netfilter根据该规则进行匹配并执行动作 ###四表: raw mangle nat filter ###五 ...
分类:其他好文   时间:2020-05-31 10:42:19    阅读次数:61
6661条   上一页 1 ... 18 19 20 21 22 ... 667 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!