Security Architecture Flashcards
什么是 Security Architecture?(What is Security Architecture?)
它就像网络世界的建筑图,规定公司该怎么设计系统、建好防火墙、放哪加密、谁能访问什么。
It’s like a blueprint for your IT systems — deciding how to build security walls, where to put encryption, and who can access what.
为什么我们要有 Security Architecture?(Why do we need it?)
没它就像盖房子不打地基,安全漏洞到处都是,黑客分分钟溜进来。
Without it, it’s like building a house without a foundation — full of holes for hackers to sneak in.
Security Architecture 涉及哪些东西?(What does Security Architecture include?)
包括服务器部署方式(本地还是云端)、权限管理、网络设计、加密策略、安全设备位置……
It covers how systems are deployed (on-prem or cloud), who has access, how networks are built, where encryption is used, and what security devices are installed.
安全架构跟日常有什么关系?(Why should I care about this as a beginner?)
你写的网站放在什么地方、怎么设置用户权限、防火墙有没有拦住奇怪的流量……这些都算是“架构决策”。
Even your website’s hosting, login rules, and firewall settings are part of security architecture — so you’re already using it!
它和后面学的内容有什么关系?(How does this connect to other chapters?)
后面讲的云端、虚拟化、微服务、IoT、安全设备,其实全是建筑材料!你要学会用对方式,把它们拼成一个安全系统。
Cloud, virtualization, microservices, IoT — they’re all building blocks. Security Architecture is about putting them together the right way.
什么是 On-Premise?(What is On-Premise?)
就是自己公司买服务器、放机房,自己维护系统、网络、电源和安全。
It means your company owns and maintains the servers, usually in an on-site data room. You handle everything yourself.
什么是 Cloud?(What is Cloud?)
就是把服务器租在别人家,比如 AWS、Google Cloud、Azure,他们负责底层运维,你只负责用。
You rent computing power from someone else — like AWS or Azure — and they manage the hardware while you use the services.
本地部署有什么好处?(What are the advantages of On-Premise?)
自己完全控制、数据不出公司、定制性高,但成本大、扩展慢。
You have full control and keep data in-house. It’s customizable but expensive and harder to scale.
云端部署有什么好处?(What are the advantages of Cloud?)
用多少付多少,弹性伸缩快,省心不用管硬件,但需要信任厂商,权限要设好。
You pay as you go, can scale easily, and don’t deal with hardware. But it requires trust in the provider and careful access management.
什么是 Hybrid Cloud?(What is Hybrid Cloud?)
一部分服务放本地,一部分放云里,既有控制力又有灵活性。
It’s a mix — some services stay on-prem, some go to the cloud. It gives you control and flexibility.
云端的最大挑战是什么?(What’s the biggest challenge in the cloud?)
是“安全责任分担”,你以为别人负责一切,其实你的数据和权限要自己管。
Shared responsibility: people think the provider handles everything, but your data and access control are still your job.
怎么简单记住两者区别?(How to remember the difference easily?)
本地 = 自建房子,云端 = 租房子住。自建贵但全权掌控,租房灵活但规矩多。
On-Prem = building your own house (costly but full control); Cloud = renting a house (flexible but rules apply).
为什么云安全这么重要?(Why is cloud security such a big deal?)
因为云是开放的、共享的、动态的,一不小心就把自己的数据暴露给全世界。
Because the cloud is shared, open, and always changing — one misstep and your data might be exposed to the world.
什么是“共享责任模型”?(What is the shared responsibility model?)
云平台管基础设施(硬件、电力、物理安全),你负责数据、权限、设置和账号安全。
The cloud provider handles infrastructure; you’re responsible for your data, settings, and user access.
什么是“共享服务器风险”?(What is shared server vulnerability?)
你和别人家的虚拟机住在同一个物理服务器上,如果别人被黑了,你也可能中招。
Multiple customers share the same physical server — if one is hacked, others might be affected too.
虚拟机配置不当有什么危险?(What happens if you misconfigure a VM?)
黑客可能轻松连进来,查看数据或横向入侵其他系统。
Hackers can sneak in, view data, or jump between systems — like leaving a door wide open.
权限管理为什么是大坑?(Why is access control a big problem in the cloud?)
给多了权限、没设 MFA、大家共用账号,这些都可能让黑客轻松拿到管理员。
Too much access, no MFA, and shared logins make it easy for attackers to become admins.
什么是“单点故障”?(What’s a single point of failure?)
比如你只用一个数据中心,它宕机了,整个服务跟着挂掉。
If one key part — like a data center — fails and takes your entire service down, that’s a SPOF.
“冷知识”:云也有“数据残留”?(What are data remnants?)
删除文件后其实还残留在硬盘里,别人可能恢复读取。
When you delete something in the cloud, it might still exist in hidden places and be recoverable.
怎么避免云安全问题?(How do you avoid cloud security risks?)
开启 MFA、用加密、定期检查权限、及时打补丁、改默认密码、设置日志监控。
Enable MFA, encrypt data, review permissions, patch regularly, change default settings, and log everything.
云的更新速度快,我们怎么跟得上?(Cloud moves fast — how do we stay secure?)
用 CSPM 工具(Cloud Security Posture Management),自动帮你发现风险配置。
Use CSPM tools to automatically scan for weak or risky configurations.
总结一句话云安全?(Cloud security in one sentence?)
云平台再强,也守不住你自己把大门敞开;配置+加密+权限控制,三重保险才安心。
Even the best cloud provider can’t protect you from your own mistakes — secure configs, encryption, and access control are key.
什么是虚拟化?
就是一台电脑里“模拟出很多台电脑”,每台都像独立的服务器。
It means one physical machine pretends to be many — each acting like its own server.
什么是 Hypervisor?它有几种?
它是管理虚拟机的“房东”,Type 1 是直接装在硬件上,Type 2 是装在已有操作系统里。
It’s the manager of virtual machines. Type 1 runs on hardware (bare metal), Type 2 runs on top of another OS.