A circuit-switched network establishes a dedicated circuit (or channel) between endpoints before the users can communicate.
Network communication is most commonly implemented using packet-switched communication.
Modern WANS have more connectivity options than traditional WANs.
New technologies are continually emerging. The figure summarizes the modern WAN connectivity options.
Dedicated broadband
Fiber can be installed independently by an organization to connect remote locations directly together.
Dark fiber can be leased or purchased from a supplier.
Packet-switched
Metro Ethernet – Replacing many traditional WAN options.
MPLS – Enables sites to connect to the provider regardless of its access technologies.
Internet-based broadband
Organizations are now commonly using the global internet infrastructure for WAN connectivity.
Service providers now offer Ethernet WAN service using fiber-optic cabling.
The Ethernet WAN service can go by many names, including the following:
There are several benefits to an Ethernet WAN:
Reduced expenses and administration
Easy integration with existing networks
Enhanced business productivity
Ethernet WANs have gained in popularity and are now commonly being used to replace the traditional serial point-to-point, Frame Relay and ATM WAN links.
Multiprotocol Label Switching (MPLS)
is a high-performance service provider WAN routing technology to interconnect clients without regard to access method or payload.
A private WAN is a connection that is dedicated to a single customer.
Private WANs provide the following:
#bba-group pppoe ISPGROUP
#virtual-template 1
#exit
#interface virtual-template 1
#ip unnumbered g0/0/1
#peer default ip address pool ISPPOOL
#ppp authentication chap
#exit
#ip local pool ISPPOOL 193.1.1.100 193.1.1.200
#interface g0/0/1
#pppoe enable group ISPGROUP
#exit
#do wr
#username U1 password #U1PASS
#username U2 password U2PASS
#bba-group pppoe SOHOGROUP
#virtual-template 2
#exit
#interface virtual-template 2
#ip unnumbered g0/0/2
#peer default ip address pool SOHOPOOL
#ppp authentication chap
#exit
#ip local pool SOHOPOOL 194.1.1.100 194.1.1.100
#interface g0/0/2
#pppoe enable group SOHOGROUP
#exit
#username SOHO password SOHOPASS
#ip route 192.168.10.0 255.255.255.0 194.1.1.100
#interface dialer 1
#encapsulation ppp
#ppp authen chap
#ppp chap password SOHOPASS
#ppp chap hostname SOHO
#dialer pool 1
#mtu 1492
#exit
#hostname SOHO
#do wr
#interface g0/0
#pppoe-client dial-pool-number 1
#no shutdown
#ip route 0.0.0.0 0.0.0.0 dialer 1
HQ
conf t
interface g0/0
no shutdown
ip address 192.168.1.1 255.255.255.0
interface s0/0/0
ip address 10.0.0.1 255.255.255.0
encapsulation frame-relay
bandwidth 64
frame-relay map ip 10.0.0.2 102 broadcast
no shutdown
===================================
Branch1
interface g0/0
no shutdown
ip address 192.168.2.1 255.255.255.0
interface s0/0/0
ip address 10.0.0.2 255.255.255.0
encapsulation frame-relay
bandwidth 64
frame-relay map ip 10.0.0.3 203 broadcast
no shutdown
Branch2
interface g0/0
no shutdown
ip address 192.168.3.1 255.255.255.0
interface s0/0/0
ip address 10.0.0.3 255.255.255.0
encapsulation frame-relay
bandwidth 64
frame-relay map ip 10.0.0.1 301 broadcast
no shutdown
enable EIGRP or OSPF routing
HQ
router eigrp 100
no auto-summary
network 192.168.1.0
network 10.0.0.0
Branch1
router eigrp 100
no auto-summary
network 192.168.2.0
network 10.0.0.0
Branch2
router eigrp 100
no auto-summary
network 192.168.3.0
network 10.0.0.0