– Chapter 4 – Secure Routing

Slides:



Advertisements
Similar presentations
RIP V2 W.lilakiatsakun.  RFC 2453 (obsoletes –RFC 1723 /1388)  Extension of RIP v1 (Classful routing protocol)  Classless routing protocol –VLSM is.
Advertisements

© 2007 Cisco Systems, Inc. All rights reserved.Cisco Public 1 Addressing the Network – IPv4 Network Fundamentals – Chapter 6.
Chapter 9: Access Control Lists
© 2006 Cisco Systems, Inc. All rights reserved. MPLS v2.2—2-1 Label Assignment and Distribution Introducing Typical Label Distribution in Frame-Mode MPLS.
Chapter 5 IP Routing Routing Sending packets through network from one device to another What must routers know? – Destination address – Neighboring routers.
CCNA 2 v3.1 Module 6.
Routing and Routing Protocols
1 Semester 2 Module 6 Routing and Routing Protocols YuDa college of business James Chen
© 2007 Cisco Systems, Inc. All rights reserved.Cisco Public 1 Addressing the Network – IPv4 Network Fundamentals – Chapter 6.
– Chapter 4 – Secure Routing
© 2008 Cisco Systems, Inc. All rights reserved.Cisco ConfidentialPresentation_ID 1 Chapter 5: Adjust and Troubleshoot Single- Area OSPF Scaling Networks.
Dynamic Routing Protocols  Function(s) of Dynamic Routing Protocols: – Dynamically share information between routers (Discover remote networks). – Automatically.
CN2668 Routers and Switches Kemtis Kunanuraksapong MSIS with Distinction MCTS, MCDST, MCP, A+
Lecture Week 7 RIPv2 Routing Protocols and Concepts.
© 2009 Cisco Systems, Inc. All rights reserved. ROUTE v1.0—6-1 Connecting an Enterprise Network to an ISP Network BGP Attributes and Path Selection Process.
Routing and Routing Protocols Routing Protocols Overview.
M.Menelaou CCNA2 ROUTING. M.Menelaou ROUTING Routing is the process that a router uses to forward packets toward the destination network. A router makes.
1. 2 Anatomy of an IP Packet IP packets consist of the data from upper layers plus an IP header. The IP header consists of the following:
Page 110/27/2015 A router ‘knows’ only of networks attached to it directly – unless you configure a static route or use routing protocols Routing protocols.
1 © 2003, Cisco Systems, Inc. All rights reserved. CCNA 3 v3.0 Module 2 Single-Area OSPF.
Verify that timestamps for debugging and logging messages has been enabled. Verify the severity level of events that are being captured. Verify that the.
Network Security1 Secure Routing Source: Ch. 4 of Malik. Network Security Principles and Practices (CCIE Professional Development). Pearson Education.
TCOM 509 – Internet Protocols (TCP/IP) Lecture 06_a Routing Protocols: RIP, OSPF, BGP Instructor: Dr. Li-Chuan Chen Date: 10/06/2003 Based in part upon.
Routing and Routing Protocols
1 Version 3.1 Module 6 Routed & Routing Protocols.
6.1 © 2004 Pearson Education, Inc. Exam Designing a Microsoft ® Windows ® Server 2003 Active Directory and Network Infrastructure Lesson 6: Designing.
 RIP — A distance vector interior routing protocol  IGRP — The Cisco distance vector interior routing protocol (not used nowadays)  OSPF — A link-state.
© 2005 Cisco Systems, Inc. All rights reserved. BGP v3.2—5-1 Customer-to-Provider Connectivity with BGP Connecting a Multihomed Customer to a Single Service.
Routing and Routing Protocols CCNA 2 v3 – Module 6.
Polytechnic University Firewall and Trusted Systems Presented by, Lekshmi. V. S cos
1 Computer Networks Chapter 5. Network layer The network layer is concerned with getting packets from the source all the way to the destination. Getting.
Dynamic routing Routing Algorithm (Dijkstra / Bellman-Ford) – idealization All routers are identical Network is flat. Not true in Practice Hierarchical.
© 2008 Cisco Systems, Inc. All rights reserved.Cisco ConfidentialPresentation_ID 1 Chapter 8: Single-Area OSPF Routing & Switching.
Chapter 4: Network Layer
Introduction to Dynamic Routing Protocol
Working at a Small-to-Medium Business or ISP – Chapter 6
Dynamic Routing Protocols II OSPF
BGP 1. BGP Overview 2. Multihoming 3. Configuring BGP.
CMPT 371 Data Communications and Networking Routing in the Internet
Routing Protocols (RIP, OSPF, BGP)
Routing and Routing Protocols: Routing Static
Dynamic routing Routing Algorithm (Dijkstra / Bellman-Ford) – idealization All routers are identical Network is flat. Not true in Practice Hierarchical.
ICMP ICMP – Internet Control Message Protocol
Chapter 4: Network Layer
Chapter 2: Static Routing
Introduction to Networking
CCNA 2 v3.1 Module 6 Routing and Routing Protocols
Dynamic routing Routing Algorithm (Dijkstra / Bellman-Ford) – idealization All routers are identical Network is flat. Not true in Practice Hierarchical.
Routing.
Chapter 5: Dynamic Routing
Chapter 2: Static Routing
Chapter 3: Dynamic Routing
Chapter 9: Multiarea OSPF
Routing and Routing Protocols: Routing Static
Dynamic Routing Protocols II OSPF
Chapter 2: Static Routing
Dynamic Routing and OSPF
70-293: MCSE Guide to Planning a Microsoft Windows Server 2003 Network, Enhanced Chapter 4: Planning and Configuring Routing and Switching.
Chapter 4: Network Layer
Overview The Internet (IP) Protocol Datagram format IP fragmentation
Chapter 9: Multiarea OSPF
Chapter 4: Network Layer
Chapter 4: Network Layer
Routing Protocols and Concepts – Chapter 7
Working at a Small-to-Medium Business or ISP – Chapter 6
Chapter 9: Multiarea OSPF
Routing Protocols and Concepts – Chapter 7
Networking and Network Protocols (Part2)
Computer Networks Protocols
Routing.
Presentation transcript:

– Chapter 4 – Secure Routing Build security into the design of routing router authentication route authentication control directed broadcast black hole filtering URPF Path integrity 2 Case studies Network Security

Design issues of secure routing Route filtering When designing a private network, it is important to ensure that ‘route filtering’ is used to filter out any bogus or undesired routes coming into the private net. Examples: special addresses (p.82) It is equally important to ensure that the only networks advertised by the private network are those desired. To ensure that IP address blocks belonging to a private network are not allowed to be advertised back into the network from outside. ‘net police filtering’ (aka. ‘prefix filtering’) – next Network Security

Design issues of secure routing Prefix Filtering No routes with prefixes more specific than /20 (or up to /24) are allowed to come in. To ensure that an attack cannot be staged on a large ISP’s router by increasing the size of its routing tables Routes more specific than /20 are often not needed by large ISPs, so those routes can be filtered out to keep its routing table from getting out of control. Example: p.93 (incoming route filtering in a BGP router), next page Network Security

Prefix Filtering Example: incoming route filtering in a BGP router Router bgp 100 Network 101.20.20.0 Distribute-list prefix max24 in ! Ip prefix-list max24 seq 5 permit 0.0.0.0/0 ge 8 le 24 ! The route 0.0.0.0/0 is the default route. See http://www.cisco.com/en/US/docs/ios/12_3t/ip_route/command/reference/ip2_i2gt.html#wp1112138 for command details and other examples. Another example: next Network Security

Prefix Filtering Example http://www. netkit Network Security

Prefix Filtering Example http://www. netkit ! Configure router 1 in AS 1: router bgp 1 network 195.11.14.0/24 network 195.11.15.0/24 neighbor 193.10.11.2 remote-as 2 neighbor 193.10.11.2 description Router 2 of AS2 neighbor 193.10.11.2 prefix-list partialOut out neighbor 193.10.11.2 prefix-list partialIn in ! ! only 195.11.14.0/24 is announced to neighbor 193.10.11.2 ip prefix-list partialOut permit 195.11.14.0/24 ! all, with the exception of 200.1.1.0/24, is accepted from 193.10.11.2 ip prefix-list partialIn deny 200.1.1.0/24 ip prefix-list partialIn permit any Network Security

Design issues of secure routing network convergence (aka. route convergence) depends on many factors complexity of the net architecture redundancy in the network route calculation algorithms and configuration loops in the network Fast convergence is desirable. Problems with a a slow-converging network can mean a considerable loss of revenue and/or productivity may be subject to DoS attacks, because it takes longer to recover from network-disrupting attacks and thus aggravates problems Network Security

Source: http://www.unitest.com/pdf/net_conv.pdf Network Security

Design issues of secure routing static routes discussed earlier (example 3-1) can be used to hard code information in the routing tables such that this info is unaffected by a network attack or propagated impact from other parts of the network Disadvantage? scalability Network Security

Authentication of Router and Routes Rationale of authenticating routers and routes: As part of an attack, the attacker may configure his machine or router to share incorrect routing information with the attacked router (AR). Impacts? Incorrect routing, disabled router, traffic redirection Flood of routing table e.g., A rogue router may act as a BGP speaker and neighbor, and advertises lots of specific routes into a core router’s routing table. slow or disabled router Network Security

Authentication of Router and Routes Solutions? Router authentication: Routers must authenticate each other before sharing information. Password-based authentication - Drawback? MD5-HMAC - Implications? Route authentication: Integrity of the exchanged routing information must be verified. Hashing-based methods, such as MD5-HMAC, can be used to authenticate routes. Figure 4-1 Examples 4-1, 4-2, 4-3 Network Security

Control/disable directed broadcast ‘Directed broadcast’ allows packets to be broadcast to all the machines on the subnet directly attached to a router. May be used by attackers to start attacks e.g., smurf attack A type of DoS attack Figure 21-3 An attacker sends a ping echo request to the broadcast address on a network, causing all the machines in that segment to send echo replies to the attacked router.  impact: packet flood Network Security

Black Hole Filtering Purpose: to filter out undesired traffic, by directing specific routes to a null interface An alternative to ACL Advantage: no access list processing  save processing time Disadvantage: Null routing is based on the packets’ destination IP addresses only, while ACL can work on source address, destination address, and layer 4 info as well. A weaker form of route filtering Example 4-5: interface null0 Network Security

URPF Unicast Reverse Path Forwarding Purpose: to thwart attempts to send packets with spoofed source IP addresses A mechanism configured on a router to disable outgoing packets with source IP addresses not in the range belonging to its site Advantage: A more efficient and effective outgoing packets filtering mechanism than ACL Requirement: CEF (Cisco Express Forwarding) must be enabled on that router, because URPF looks at the FIB (forwarding information base) rather than at the routing table. Example: Figure 4-2 Network Security

URPF (cont.) Constraint: can not be deployed on a router that has asymmetric routes set up. In asymmetric routing, more than one interface is used (by a router or firewall) to route packets of a private network.  The interface through which the router sends return traffic for a packet may not be the same interface on which the original packet was received. In general, URPF is deployed on the edge of a network.  allowing the anti-spoofing capabilities to be effective to the entire network Example 4-6: ip verify unicast reverse-path Network Security

Path Integrity Rule of thumb: Routing should be performed based on the optimum paths calculated by the underlying routing protocols.  However, the routing protocols may be affected by ICMP redirects and IP source routing when making such calculations. ICMP redirects allows a router to inform another router on its local segment not to use certain hop in its path to certain host.  because including the hop will result in paths that’s not optimal ICMP redirects is the default setting on Cisco routers. Should be disabled unless absolutely necessary IP source routing: next Network Security

Path Integrity (cont.) IP source routing: an IP feature, allowing a user to set a field in the IP packet to specify the desired path May be used by attackers to subvert the workings of normal routing protocols Example: An attacker can specify a router (A) that is attached to both a private and the public network as an intermediate point in the source path to reach a private address (e.g., 10.1.1.1). All intermediate routers, with IP source routing enabled, will forward the packet to router A.  causing DoS attack Advice: disable IP source routing on the router Network Security

Case study 1 - Securing the BGP Routing Protocol 11/30/2018 Case study 1 - Securing the BGP Routing Protocol BGP is an exterior gateway protocol Example techniques: Enable BGP peer authentication Filter incoming routes Filter outgoing routes Use the network statement to advertise the network block Disable BGP multihop feature (that is, do not allow peering between routers not directly connected to each other) Control TCP port 179 (the BGP port)  using the firewall or ACLs to do the filtering Disable BGP version negotiation (instead, hard-code the version info) Use police filters and null routes Set up BGP route flap dampening values  to prevent flapping routes Use the maximum-prefix command Logging changes in neighbor status BGP Route Flap Dampening (RFC 2349) : see http://www.inetdaemon.com/tutorials/internet/ip/routing/bgp/operation/bgp_route_flap_dampening.shtml “When a route is repeatedly advertised and withdrawn, it is considered to be 'flapping'. Flapping routes cause instability in the Internet routing table and Cisco routers running BGP contain an optional mechanism designed to dampen the destabilizing effect of flapping routes. When a Cisco router running BGP detects a flapping route it automatically dampens that route. The route dampening prevents routers from thrashing while trying to re-calculate a large number of route updates. The overall effect is to produce a more stable routing table. BGP routes can remain in the routing table for months.” Network Security

Case Study 2 - Securing the OSPF routing protocols 11/30/2018 Case Study 2 - Securing the OSPF routing protocols The Open Shortest Path First protocol is a hierarchical interior gateway protocol (IGP) for routing Example techniques: Router authentication Nonbroadcast neighbor configuration Using stub areas Using loopback interfaces as the router IDs Tweaking SPF timers Route filtering … For OSPF areas, see http://books.google.com/books?id=77h9SA94kasC&pg=PA169&lpg=PA169&dq=%22stub+area%22+cisco&source=web&ots=ZLWLLq6ddD&sig=dW1x_wMt0GmDX2bHQPPN7jgF2zc&hl=en&sa=X&oi=book_result&resnum=9&ct=result#PPA168,M1 See also http://www.carnet.hr/crepozitorij/lab.pdf for example diagrams. LSA (Link State Advertisement) is a basic communication means of the OSPF routing protocol for IP. It communicates the router's local routing topology to all other local routers in the same OSPF area. (http://en.wikipedia.org/wiki/Link-state_advertisement) Network Security

Summary Security of routers and routes is critical for the security of the whole network. The net administrator should configure his routers and routes, not only to protect the private network, but also to help to protect the whole Internet. Next: security of LAN switching Network Security