Bereitstellungsmodi

Konfigurieren des Routers

Die Appliance verhandelt automatisch WCCP-GRE oder WCCP-L2. Die Hauptwahl besteht zwischen dem Unicast-Vorgang (bei dem die Appliance mit der IP-Adresse jedes Routers konfiguriert ist) oder dem Multicast-Vorgang (bei dem sowohl die Appliance als auch die Router mit der Multicast-Adresse konfiguriert sind).

Normal (Unicast) -Operation: Für den normalen Betrieb wird WCCP Version 2 und die WCCP-Gruppen-ID für den Router als Ganzes deklariert und dann die Umleitung für jede WAN-Schnittstelle aktiviert. Es folgt ein Cisco IOS Beispiel:

``` pre codeblock config term ip wccp version 2 ! We will configure the appliance to use group 51 for TCP and 52 for UDP. ip wccp 51 ip wccp 52

! Repeat the following three lines for each WAN interface ! you wish to accelerate: interface your_wan_interface ! If Reverse Path Forwarding is enabled (with an ip verify unicast ! source reachable” statement), delete or comment out the statement: ! ip verify unicast source reachable-via any ! Repeat on all ports.

ip wccp 51 redirect out ip wccp 51 redirect in ip wccp 52 redirect out ip wccp 52 redirect in

! If the appliance is inline with one of the router interfaces ! (NOT SUPPORTED), add the following line for that interface ! to prevent loops: ip wccp redirect exclude in ^Z


Wenn mehrere Router dieselbe Appliance verwenden sollen, wird jeder wie oben dargestellt konfiguriert, wobei entweder dieselben oder unterschiedliche Servicegruppen verwendet werden.

**Multicastbetrieb**— Wenn der Appliance und jedem Router eine Multicastadresse zugewiesen wird, unterscheidet sich die Konfiguration geringfügig von der für den normalen Betrieb. Es folgt ein Cisco IOS Beispiel:

``` pre codeblock
config term
ip wccp version 2
ip wccp 51 group-address 225.0.0.1

! Repeat the following three lines for each WAN interface
! you wish to accelerate:
interface your_wan_interface
! If Reverse Path Forwarding is enabled (with an ip verify unicast
! source reachable” statement), delete or comment out the statement:
! ip verify unicast source reachable-via any

ip wccp 51 redirect out
ip wccp 51 redirect in
!
! The following line is needed only on the interface facing the other router,
! if there is another router participating in this service group.
ip wccp 51 group-listen

!If the appliance is inline with one of the router interfaces,
!(which is supported but not recommended), add
!the following line for that interface to prevent loops:
ip wccp redirect exclude in
^Z
<!--NeedCopy-->
Konfigurieren des Routers

In diesem Artikel