当前位置: > 投稿>正文

莆田是什么,莆田是什么牌子的鞋(vsftp、selinux、firewalld知识点串接讲解)

02-26 互联网 未知 投稿

关于【莆田是什么】,莆田是什么牌子的鞋,今天涌涌小编给您分享一下,如果对您有所帮助别忘了关注本站哦。

1、vsftp、selinux、firewalld知识点串接讲解

## 一:概述

那么我们已经学过了firewalld,但还不能满足安全给我们带来某些操作或配置的麻烦性,所以我们需要进一步学习selinux,它属于应用层方面的安全,那么我们这方面的内容,我们需要掌握selinux它的知识:1、安全上下文;2、策略BOOLeans 值。也许你不明白什么意思,但我们通过实验,制造出问题,让你感觉它的重要性。

## 二:vsftp正常使用

莆田是什么,莆田是什么牌子的鞋(vsftp、selinux、firewalld知识点串接讲解)

莆田是什么,莆田是什么牌子的鞋(vsftp、selinux、firewalld知识点串接讲解)

## 三:操作示例

[root@server ~]#

[root@server ~]# setenforce 1

[root@server ~]#

[root@server ~]#

[root@server ~]# getenforce

Enforcing

[root@server ~]# chmod 777 /var/ftp/pub/

[root@localhost ~]# vi /etc/vsftpd/vsftpd.conf

local_enable=YES

local_umask=022

anon_upload_enable=YES

anon_mkdir_write_enable=YES

莆田是什么,莆田是什么牌子的鞋(vsftp、selinux、firewalld知识点串接讲解)

[root@localhost pub]# firewall-cmd --zone=public --list-all

public (default, active)

interfaces: eno16777736

sources:

services: dhcpv6-client ftp ssh

ports:

masquerade: no

forward-ports:

icmp-blocks:

[root@localhost ftp]# ll

total 0

drwxrwxrwx. 3 root root 39 Jul 21 10:43 pub

drwxr-xr-x. 2 root root 6 Jul 21 08:49 system

以上的内容是在firewalld放开了ftp服务器及我们的文件夹权限都是放开的。

以下实验,我们是开启防火墙和安全上下selinux:

输入:ftp://192.168.92.129/,我们先往ftp服务器里面pub目录存放数据,输出内容如下:

莆田是什么,莆田是什么牌子的鞋(vsftp、selinux、firewalld知识点串接讲解)

[root@localhost pub]#

[root@localhost pub]# setenforce 1

[root@localhost pub]#

[root@localhost pub]#

[root@localhost pub]# getenforce

Enforcing

[root@localhost pub]#

[root@localhost pub]#

[root@localhost pub]#

莆田是什么,莆田是什么牌子的鞋(vsftp、selinux、firewalld知识点串接讲解)

[root@localhost pub]# ls -Z /var/ftp/

drwxrwxrwx. root root system_u:object_r:public_content_t:s0 pub

drwxr-xr-x. root root unconfined_u:object_r:public_content_t:s0 system

u:代表是用户

r:代表角色

t:代表类型

system_u:代表系统管理员用户

object_r:代表文件和目录对象角色

public_content_t:代表主体或客体一组某一个类型

unconfined_u:代表没有定义的用户

我们可以借助以下命令修改安全上下文(context)的权限

chcon

[root@localhost pub]#

[root@localhost pub]#

[root@localhost pub]#

[root@localhost pub]# cd /etc/se

securetty security/ selinux/ services sestatus.conf

[root@localhost pub]# cd /etc/se

securetty security/ selinux/ services sestatus.conf

[root@localhost pub]# cd /etc/selinux/

config semanage.conf targeted/

[root@localhost pub]# cd /etc/selinux/targeted/

booleans.subs_dist contexts/ logins/ modules/ policy/ .policy.sha512 setrans.conf seusers

[root@localhost pub]# cd /etc/selinux/targeted/contexts/

customizable_types default_contexts failsafe_context initrc_context netfilter_contexts securetty_types systemd_contexts users/ virtual_image_context

dbus_contexts default_type files/ lxc_contexts removable_context sepgsql_contexts userhelper_context virtual_domain_context x_contexts

[root@localhost pub]# cd /etc/selinux/targeted/contexts/

[root@localhost contexts]# ls

customizable_types default_contexts failsafe_context initrc_context netfilter_contexts securetty_types systemd_contexts users virtual_image_context

dbus_contexts default_type files lxc_contexts removable_context sepgsql_contexts userhelper_context virtual_domain_context x_contexts

[root@localhost contexts]# cd files/

[root@localhost files]# ls

file_contexts file_contexts.bin file_contexts.homedirs file_contexts.homedirs.bin file_contexts.local file_contexts.local.bin file_contexts.subs file_contexts.subs_dist media

[root@localhost files]# cat file_contexts | grep public_content*

/srv/([^/]*/)?ftp(/.*)? system_u:object_r:public_content_t:s0

/srv/([^/]*/)?rsync(/.*)? system_u:object_r:public_content_t:s0

/var/ftp(/.*)? system_u:object_r:public_content_t:s0

/var/spool/abrt-upload(/.*)? system_u:object_r:public_content_rw_t:s0

[root@localhost files]#

public_content_rw_t

chcon –t public_content_rw_t /var/ftp/pub

[root@localhost files]#

[root@localhost files]# chcon -t public_content_rw_t /var/ftp/pub

[root@localhost files]#

[root@localhost files]#

[root@localhost files]# ls -Z /var/ftp/pub/

drwx------. ftp ftp system_u:object_r:public_content_t:s0 æ°æ件夹

[root@localhost files]# ls -Z /var/ftp/pub

drwx------. ftp ftp system_u:object_r:public_content_t:s0 æ°æ件夹

[root@localhost files]# ls -Z /var/ftp

drwxrwxrwx. root root system_u:object_r:public_content_rw_t:s0 pub

drwxr-xr-x. root root unconfined_u:object_r:public_content_t:s0 system

[root@localhost files]#

[root@localhost files]#

[root@localhost files]#

莆田是什么,莆田是什么牌子的鞋(vsftp、selinux、firewalld知识点串接讲解)

[root@localhost targeted]# getsebool -a | grep ftp

ftp_home_dir --> off

ftpd_anon_write --> off

ftpd_connect_all_unreserved --> off

ftpd_connect_db --> off

ftpd_full_access --> off

ftpd_use_cifs --> off

ftpd_use_fusefs --> off

ftpd_use_nfs --> off

ftpd_use_passive_mode --> off

httpd_can_connect_ftp --> off

httpd_enable_ftp_server --> off

sftpd_anon_write --> off

sftpd_enable_homedirs --> off

sftpd_full_access --> off

sftpd_write_ssh_home --> off

tftp_anon_write --> off

tftp_home_dir --> off

[root@localhost targeted]#

[root@localhost targeted]# setsebool -P ftpd_anon_write=on

[root@localhost targeted]# getsebool -a | grep ftp

ftp_home_dir --> off

ftpd_anon_write --> on

ftpd_connect_all_unreserved --> off

ftpd_connect_db --> off

ftpd_full_access --> off

ftpd_use_cifs --> off

ftpd_use_fusefs --> off

ftpd_use_nfs --> off

ftpd_use_passive_mode --> off

httpd_can_connect_ftp --> off

httpd_enable_ftp_server --> off

sftpd_anon_write --> off

sftpd_enable_homedirs --> off

sftpd_full_access --> off

sftpd_write_ssh_home --> off

tftp_anon_write --> off

tftp_home_dir --> off

[root@localhost targeted]#

莆田是什么,莆田是什么牌子的鞋(vsftp、selinux、firewalld知识点串接讲解)

莆田是什么,莆田是什么牌子的鞋(vsftp、selinux、firewalld知识点串接讲解)

莆田是什么,莆田是什么牌子的鞋(vsftp、selinux、firewalld知识点串接讲解)

莆田是什么,莆田是什么牌子的鞋(vsftp、selinux、firewalld知识点串接讲解)

莆田是什么,莆田是什么牌子的鞋(vsftp、selinux、firewalld知识点串接讲解)

莆田是什么,莆田是什么牌子的鞋(vsftp、selinux、firewalld知识点串接讲解)

莆田是什么,莆田是什么牌子的鞋(vsftp、selinux、firewalld知识点串接讲解)

通过以上实验,我们已经正常读写数据了。

2、莆田是什么

莆田指的是什么梗?

这个梗出自:莆田被戏称为假鞋之都。

莆田系指的是仿造大品牌生产的物品。因为在八十年代时,莆田有很多鞋品牌大工厂在此建厂,使其发现了品牌假鞋的暴利,并大量生产假鞋销往全国,而此后莆田鞋就成为高仿鞋、假鞋的代名词,莆田系也成为了仿造品牌产品的象征。

详细介绍:

大家对于莆田鞋的看法,褒贬不一。很多人买假鞋,是因为假鞋性价比高,花费较低的价格,就可以买到和正品一样的款式,尽管它们存在很多不同,但是低廉的价格依旧能够打动很多朋友。

对假鞋嗤之以鼻的人,是因为假鞋搞乱了整个球鞋市场。而很多贪心的假鞋贩子,会把假鞋以假充真来贩卖,导致整个球鞋市场风起被破坏。买正品的朋友们,买到新鞋的时候,第一件要做的事情不是去享受新鞋带来的喜悦,而是去鉴定真假,导致很多朋友在买鞋的时候,都提心吊胆,生怕上当受骗。

不得不说,莆田的造价技术已经十分完善了,多年的造鞋经验,让莆田拥有以假乱真的能力。但是买假鞋并不是什么见不得人的事情,大家都有权利选择自己的消费方式。假鞋的价格实惠,相比于价格虚高的正品来说,买不起真鞋的朋友,买假鞋蹭蹭热度自然也无可厚非。

莆田是什么 莆田是什么地点

1、莆田是地方名,福建地级市,古时被称为“兴化”,被称为“普阳”、“普仙”,被称为“海滨邹鲁”、“文献名邦”,是福建省历史和文化的城市。莆田市位于福建沿海中部,东起台海和台湾隔海相望,北依福州,南接泉州,且其为著名侨。

2、莆田市是福建省下辖的地级市。蒲田市在历史上被称为兴安兴化,也被称为普阳、莆仙。自古以来就是闵中的政治、经济、文化中心。历史悠久,文化源远流长,素有“海滨邹鲁”、“文献名邦”之美誉。莆田市目前管辖仙游县、荔城区、城厢区、涵江区、秀屿区四区和止动洲岛国家旅游度假区、止动洲湾北岸经济开发区两个管理委员会。湾口的止洲岛是国内外有名的和平女神·妈祖庙的所在地,是妈祖文化的发祥地。

莆田鞋是什么意思 跟正品有什么区别?

莆田鞋是指莆田生产的鞋子。莆田鞋一直以来是以高仿而著称被大家所熟知的。

莆田鞋分通货、真标、公司级和纯原四个版本,也就是这个品质的。要说跟正品的区别,其实不管是哪个版本,和正品还是不能比的,不管是材质还是做工,都不可能做到那么完美的。至于经常看到有很多商家说能和正品媲美,能过毒等等,这些话听听就好,不必当真。

本文关键词:莆田是什么地方,莆田是什么级别的城市,莆田是什么牌子的鞋,莆田是什么车牌号,莆田是什么车牌。这就是关于《莆田是什么,莆田是什么牌子的鞋(vsftp、selinux、firewalld知识点串接讲解)》的所有内容,希望对您能有所帮助!更多的知识请继续关注《犇涌向乾》百科知识网站:http://www.029ztxx.com!

版权声明: 本站仅提供信息存储空间服务,旨在传递更多信息,不拥有所有权,不承担相关法律责任,不代表本网赞同其观点和对其真实性负责。如因作品内容、版权和其它问题需要同本网联系的,请发送邮件至 举报,一经查实,本站将立刻删除。

猜你喜欢