• Aucun résultat trouvé

Implementing Secure Converged Implementing Secure Converged Wide Area Networks (ISCW)Wide Area Networks (ISCW)Basic Teleworker Services

N/A
N/A
Protected

Academic year: 2022

Partager "Implementing Secure Converged Implementing Secure Converged Wide Area Networks (ISCW)Wide Area Networks (ISCW)Basic Teleworker Services"

Copied!
8
0
0

Texte intégral

(1)

http://www.INE.com

Implementing Secure Converged Implementing Secure Converged

Wide Area Networks (ISCW) Wide Area Networks (ISCW)

Basic Teleworker Services

Teleworker Services Goals Teleworker Services Goals

• Provide access into the network from SOHO locations while still ensuring

– Centralized management – Security

– Application response

• e.g. VoIP

• Cisco’s “Business Ready Teleworker”

(2)

Copyright

Copyright © © 2009 Internetwork Expert, Inc 2009 Internetwork Expert, Inc www.INE.com

www.INE.com

Teleworker Components Teleworker Components

• Access method

– Cable, DSL, Fiber, etc.

• Security

– IPSec, AAA, IPS, etc.

• QoS

• Management

– SNMP, RMON, Syslog, etc.

Cable Access Overview Cable Access Overview

• Offers video, voice, and data over Hybrid Fiber-Coaxial (HFC) based network

• Uses Frequency Division Multiplexing (FDM) to deliver multiple RF signals over same wires

– i.e. “broadband”

(3)

Copyright

Copyright © © 2009 Internetwork Expert, Inc 2009 Internetwork Expert, Inc www.INE.com

www.INE.com

Cable Standards Cable Standards

• Data Over Cable Service Interface Specification (DOCSIS)

– ITU-T standard developed by CableLabs

• Defines Layer 1 & Layer 2 specification

– Layer 1

• RF channels & modulation – Layer 2

• Time Division Multiple Access (TDMA)

• Synchronous Code Division Multiple Access (SCDMA)

• Not contention based like Ethernet CSMA/CD – e.g. not prone to collisions

• Version defines throughput & features

– 1.0/1.1/2.0/3.0 – Region specific

• i.e. DOCSIS vs EuroDOCSIS

Cable Equipment Cable Equipment

• Cable Modem (CM)

– CPE device to connect customer to distribution network via “tap” or “subscriber drop”

• Essentially Ethernet to HFC bridge

– e.g. HWIC-CABLE-D-2 or Linksys CM100 – DOCSIS provisioning is plug-and-play

• i.e. negotiate with CMTS, download config via TFTP

• Cable Modem Termination System (CMTS) – Located at cable network “headend”

– Aggregates CM traffic into IP network

• Essentially HFC to Ethernet bridge with lots of ports

– e.g. Cisco uBR10000

(4)

Copyright

Copyright © © 2009 Internetwork Expert, Inc 2009 Internetwork Expert, Inc www.INE.com

www.INE.com

For More Information on Cable For More Information on Cable

• Cable network architecture is outside the scope of this class

– "PacketCable Implementation" (Cisco Press) ISBN 1-58705-181-8

– http://www.cablelabs.com

• From our perspective, simply a WAN link into the IP network

xDSL Access Overview xDSL Access Overview

• Digital Subscriber Line (DSL)

• Offers video, voice, and data over POTS

– Analog voice only uses small frequency range – Data can use the remaining bandwidth over

the same circuit

• Suffers from distance limitations more so than cable

– i.e. attenuation over copper (POTS) worse

than fiber + copper (HFC)

(5)

Copyright

Copyright © © 2009 Internetwork Expert, Inc 2009 Internetwork Expert, Inc www.INE.com

www.INE.com

xDSL Standards xDSL Standards

• Generic term for different ITU-T standards – Different bandwidth and features

• Two main categories – Asymmetrical

• ADSL (Asymmetrical)

• VDSL (Very-high-speed) – e.g. AT&T U-Verse

– Symmetrical

• SDSL (Symmetrical)

• IDSL (ISDN)

• HDSL (High rate) – i.e. T1/E1 substitute

DSL Equipment DSL Equipment

• DSL Modem

– CPE device connecting to local loop – Bridges/Routes Ethernet to ATM – e.g. WIC-1ADSL or Linksys AM300

• DSL Access Multiplexer (DSLAM)

– Aggregates ATM PVCs from customer circuits and bridges to aggregation router

– Basically an ATM switch with lots of DSL modems in single chassis

– e.g. Cisco 6100 IP DSL Switch (EOL)

• DSL Aggregation Router

– Accepts bridged ATM cells from DSLAM and routes to IP network

– e.g. Cisco 6400 Carrier-Class Broadband Aggregator (EOL)

(6)

Copyright

Copyright © © 2009 Internetwork Expert, Inc 2009 Internetwork Expert, Inc www.INE.com

www.INE.com

CPE to SP Communication CPE to SP Communication

• DSLAM is a layer 2 device

– Bridges from CPE to SP aggregation router

• Layer 3 session can exist between…

– PC and SP aggregation router

• RFC 1483/2684

• AKA “IRB” or “RBE”

– CPE and SP aggregation router

• PPP over Ethernet (PPPoE)

– AAL5SNAP encapsulation

• PPP over ATM (PPPoA)

– AAL5MUX encapsulation

RFC 1483/2684 (RBE)

RFC 1483/2684 (RBE) Config Config Example Example

CPE#

bridge irb

!

interface Ethernet0 no ip address bridge-group 1

!

interface ATM0

dsl operating-mode auto no ip address

pvc 1/100

encapsulation aal5snap

!

bridge-group 1

!

interface BVI1 ip address dhcp

!

bridge 1 protocol ieee

bridge 1 route ip

(7)

Copyright

Copyright © © 2009 Internetwork Expert, Inc 2009 Internetwork Expert, Inc www.INE.com

www.INE.com

PPPoE

PPPoE Config Config Example Example

CPE#

vpdn enable

!

vpdn-group pppoe request-dialin protocol pppoe

!

interface FastEthernet0 ip address 10.0.0.1 255.0.0.0 ip nat inside

!

interface ATM0 dsl operating-mode auto pvc 1/100

encapsulation aal5snap pppoe-client dial-pool-number 1

!

interface Dialer1 ip mtu 1492 ip address negotiated ip nat outside encapsulation ppp dialer pool 1

ppp chap hostname USERNAME ppp chap password PASSWORD

!

ip nat inside source list 1 interface Dialer1 overload ip route 0.0.0.0 0.0.0.0 dialer1

!

access-list 1 permit 10.0.0.0 0.255.255.255

PPPoA

PPPoA Config Config Example Example

CPE#

interface FastEthernet0 ip address 10.0.0.1 255.0.0.0 ip nat inside

!

interface ATM0 dsl operating-mode auto pvc 1/100

encapsulation aal5mux ppp dialer dialer pool-member 1

!

interface Dialer1 ip address negotiated ip nat outside encapsulation ppp dialer pool 1 dialer-group 1

ppp chap hostname USERNAME ppp chap password PASSWORD

!

dialer-list 1 protocol ip permit

!

ip nat inside source list 1 interface Dialer1 overload ip route 0.0.0.0 0.0.0.0 dialer1

!

access-list 1 permit 10.0.0.0 0.255.255.255

(8)

Copyright

Copyright © © 2009 Internetwork Expert, Inc 2009 Internetwork Expert, Inc www.INE.com

www.INE.com

For More Information on DSL For More Information on DSL

• Like cable, DSL design is outside our scope

– Design and Implementation of DSL-Based Access Solutions (Cisco Press) ISBN 1- 58705-021-8

– End-to-End DSL Architectures (Cisco Press) ISBN 1-58705-087-0

• From our perspective, simply a WAN link into the IP network

Teleworker Services Q&A

Teleworker Services Q&A

Références

Documents relatifs

The proposed MILP model optimizes SFC allocation in Fog- cloud environments by not only reducing user latency since services (e.g. databases) are instantiated close to users, but

This topic explains how to cable the Cisco VPN 3000 Series Concentrator and establish a management session between a PC and the Concentrator. All rights reserved. A power cable

Chapter 7 Monitoring and Administering the VPN 3000 Series Concentrator 303 Chapter 8 Configuring Cisco 3002 Hardware Client for Remote Access 359 Chapter 9 Configuring

The monitor session global configuration command is also used to enable SPAN monitoring on a port or multiple ports and to configure a port as a destination port.. Use the no form

WLAN Connectivity Troubleshooting Example 2: Duplex and Trust Issues...  First, display the log and look for clues about the interface (Gi 0/34) that apparently goes up and

Copyright © © 2009 Internetwork Expert, Inc 2009 Internetwork Expert, Inc

zone-pair security INSIDE_TO_OUTSIDE source INSIDE destination OUTSIDE service-policy type inspect INSIDE_TO_OUTSIDE. interface FastEthernet0/0 zone-member

Copyright © © 2009 Internetwork Expert, Inc 2009 Internetwork Expert, Inc