1. Trang chủ
  2. » Công Nghệ Thông Tin

Chapter 8 v7 0

130 0 0

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

THÔNG TIN TÀI LIỆU

Thông tin cơ bản

Định dạng
Số trang 130
Dung lượng 1,54 MB

Nội dung

©1996-2016, J.F Kurose and K.W Ross Computer Networks Lectured by: Nguyen Le Duy Lai (lai@hcmut.edu.vn) Computer Networking: A Top Down Approach 7th Edition, Global Edition Jim Kurose, Keith Ross Pearson April 2016 Security 6-1 ©1996-2016, J.F Kurose and K.W Ross Chapter Security Computer Networking: A Top Down Approach 7th Edition, Global Edition Jim Kurose, Keith Ross Pearson April 2016 Security 8-2 Chapter 8: Network Security Chapter goals: § understand principles of network security: • cryptography and its many uses beyond confidentiality ã authentication ã message integrity â1996-2016, J.F Kurose and K.W Ross Đ security in practice: ã firewalls and intrusion detection systems (IDS) • security in application, transport, network, link layers Security 8-3 ©1996-2016, J.F Kurose and K.W Ross Chapter 8: roadmap 8.1 What is network security? 8.2 Principles of cryptography 8.3 Message integrity and digital signatures 8.4 End-point authentication 8.5 Securing e-mail 8.6 Securing TCP connections: SSL 8.7 Network layer security: IPsec and VPNs 8.8 Securing wireless LANs 8.9 Operational security: firewalls and IDS Security 8-4 What is network security? ©1996-2016, J.F Kurose and K.W Ross confidentiality: only sender, intended receiver should “understand” message contents • sender encrypts message • receiver decrypts message authentication: sender, receiver want to confirm identity of each other message integrity: sender, receiver want to ensure message not altered (in transit, or afterwards) without detection access and availability: services must be accessible and available to users Security 8-5 Friends and enemies: Alice, Bob, Trudy § well-known in network security world § Bob, Alice (lovers!) want to communicate “securely” § Trudy (intruder) may intercept, delete, add messages Alice Bob ©1996-2016, J.F Kurose and K.W Ross channel data data, control messages secure receiver secure sender data Trudy Security 8-6 ©1996-2016, J.F Kurose and K.W Ross Who might Bob, Alice be? § … well, real-life Bobs and Alices! § Web browser/server for electronic transactions (e.g., on-line purchases) § on-line banking client/server § DNS servers § routers exchanging routing table updates Đ other examples? Security 8-7 â1996-2016, J.F Kurose and K.W Ross There are bad guys (and girls) out there! Q: What can a “bad guy” do? A: A lot! See section 1.6 • eavesdrop: intercept messages • actively insert messages into connection • impersonation: can fake (spoof) source address in packet (or any field in packet) • hijacking: “take over” ongoing connection by removing sender or receiver, inserting himself in place • denial of service: prevent service from being used by others (e.g., by overloading resources) Security 8-8 ©1996-2016, J.F Kurose and K.W Ross Chapter roadmap 8.1 What is network security? 8.2 Principles of cryptography 8.3 Message integrity and digital signatures 8.4 End-point authentication 8.5 Securing e-mail 8.6 Securing TCP connections: SSL 8.7 Network layer security: IPsec and VPNs 8.8 Securing wireless LANs 8.9 Operational security: firewalls and IDS Security 8-9 The language of cryptography Alice’s K encryption A key ©1996-2016, J.F Kurose and K.W Ross plaintext encryption algorithm Bob’s K decryption Bkey ciphertext decryption algorithm plaintext m plaintext message KA(m) ciphertext, encrypted with key KA m = KB(KA(m)) Security 8-10 EAP: extensible authentication protocol § EAP: end-end client (mobile) to authentication server protocol § EAP sent over separate “links” ©1996-2016, J.F Kurose and K.W Ross • mobile-to-AP (EAP over LAN) • AP to authentication server (RADIUS over UDP) wired network EAP TLS EAP EAP over LAN (EAPoL) IEEE 802.11 RADIUS UDP/IP Security 8-116 ©1996-2016, J.F Kurose and K.W Ross Chapter roadmap 8.1 What is network security? 8.2 Principles of cryptography 8.3 Message integrity and digital signatures 8.4 End-point authentication 8.5 Securing e-mail 8.6 Securing TCP connections: SSL 8.7 Network layer security: IPsec and VPNs 8.8 Securing wireless LANs 8.9 Operational security: firewalls and IDS Security 8-117 Firewalls ©1996-2016, J.F Kurose and K.W Ross firewall isolates organization’s internal net from larger Internet, allowing some packets to pass, blocking others public Internet administered network trusted “good guys” firewall untrusted “bad guys” Security 8-118 ©1996-2016, J.F Kurose and K.W Ross Firewalls: why prevent denial of service attacks: § SYN flooding: attacker establishes many bogus TCP connections, no resources left for “real” connections prevent illegal modification/access of internal data § e.g., attacker replaces CIA’s homepage with something else allow only authorized access to inside network § set of authenticated users/hosts three types of firewalls: § stateless packet filters § stateful packet filters § application gateways Security 8-119 Stateless packet filtering ©1996-2016, J.F Kurose and K.W Ross Should arriving packet be allowed in? Departing packet let out? § internal network connected to Internet via router firewall § router filters packet-by-packet, decision to forward/drop packet based on: • source IP address, destination IP address • TCP/UDP source and destination port numbers • ICMP message type • TCP SYN and ACK bits Security 8-120 ©1996-2016, J.F Kurose and K.W Ross Stateless packet filtering: example § example 1: block incoming and outgoing datagrams with IP protocol field = 17 and with either source or dest port = 23 • result: all incoming, outgoing UDP flows and telnet connections are blocked § example 2: block inbound TCP segments with ACK=0 • result: prevents external clients from making TCP connections with internal clients, but allows internal clients to connect to outside Security 8-121 Stateless packet filtering: more examples ©1996-2016, J.F Kurose and K.W Ross Policy Firewall Setting No outside Web access Drop all outgoing packets to any IP address, port 80 No incoming TCP connections, except those for institution’s public Web server only Drop all incoming TCP SYN packets to any IP except 130.207.244.203, port 80 Prevent Web-radios from eating up the available bandwidth Drop all incoming UDP packets except DNS and router broadcasts Prevent your network from being used for a smurf DoS attack Drop all ICMP packets going to a “broadcast” address (e.g 130.207.255.255) Prevent your network from being tracerouted Drop all outgoing ICMP TTL expired traffic Security 8-122 Access Control Lists ACL: table of rules, applied top to bottom to incoming packets: ©1996-2016, J.F Kurose and K.W Ross (action, condition) pairs: looks like OpenFlow forwarding (Ch 4)! action source address dest address allow 222.22/16 outside of 222.22/16 allow outside of 222.22/16 allow 222.22/16 allow outside of 222.22/16 222.22/16 deny all all 222.22/16 outside of 222.22/16 protocol source port dest port flag bit TCP > 1023 80 TCP 80 > 1023 ACK UDP > 1023 53 - UDP 53 > 1023 all all all all any Security 8-123 Stateful packet filtering § stateless packet filter: heavy handed tool • admits packets that “make no sense,” e.g., dest port = 80, ACK bit set, even though no TCP connection established: action ©1996-2016, J.F Kurose and K.W Ross allow source address dest address outside of 222.22/16 222.22/16 protocol source port dest port flag bit TCP 80 > 1023 ACK § stateful packet filter: track status of every TCP connection • track connection setup (SYN), teardown (FIN): determine whether incoming, outgoing packets “makes sense” • timeout inactive connections at firewall: no longer admit packets Security 8-124 Stateful packet filtering ©1996-2016, J.F Kurose and K.W Ross ACL augmented to indicate need to check connection state table before admitting packet action source address dest address proto source port dest port allow 222.22/16 outside of 222.22/16 TCP > 1023 80 allow outside of 222.22/16 TCP 80 > 1023 ACK allow 222.22/16 UDP > 1023 53 - allow outside of 222.22/16 222.22/16 UDP 53 > 1023 deny all all all all all all 222.22/16 outside of 222.22/16 flag bit check conxion any x x Security 8-125 Application gateways ©1996-2016, J.F Kurose and K.W Ross § filter packets on application data as well as on IP/TCP/UDP fields § example: allow select internal users to telnet outside host-to-gateway telnet session application gateway router and filter gateway-to-remote host telnet session require all telnet users to telnet through gateway for authorized users, gateway sets up telnet connection to dest host Gateway relays data between connections router filter blocks all telnet connections not originating from gateway Security 8-126 ©1996-2016, J.F Kurose and K.W Ross Limitations of firewalls, gateways § IP spoofing: router can’t know if data “really” comes from claimed source § if multiple app’s need special treatment, each has own app gateway § client software must know how to contact gateway • e.g., must set IP address of proxy in Web browser § filters often use all or nothing policy for UDP § tradeoff: degree of communication with outside world, level of security § many highly protected sites still suffer from attacks Security 8-127 Intrusion detection systems Đ packet filtering: ã operates on TCP/IP headers only • no correlation check among sessions â1996-2016, J.F Kurose and K.W Ross Đ IDS: intrusion detection system • deep packet inspection: look at packet contents (e.g., check character strings in packet against database of known virus, attack strings) ã examine correlation among multiple packets Đ port scanning § network mapping § DoS attack Security 8-128 Intrusion detection systems multiple IDSs: different types of checking at different locations firewall ©1996-2016, J.F Kurose and K.W Ross internal network IDS sensors Web DNS serverFTP server server Internet demilitarized zone Security 8-129 Network Security (summary) basic techniques… • cryptography (symmetric and public) • message integrity • end-point authentication ©1996-2016, J.F Kurose and K.W Ross … used in many different security scenarios • • • • secure email secure transport (SSL) IP sec 802.11 operational security: firewalls and IDS Security 8-130

Ngày đăng: 11/04/2023, 09:46

TÀI LIỆU CÙNG NGƯỜI DÙNG

TÀI LIỆU LIÊN QUAN

w