CISCO WAAS部署

Google 标签: WAAS, inline, pbr, wccp, 部署方式
CISCO WAAS(Wide Area Application Services)产品(产品序列为WAE)是用在广域网链路加速方面的,主要针对带宽小和延时大的链路环境。部署在总部和分支机构会有很明显的带宽提升效果。其针对数据报文进行压缩(LZ)、重复数据消减(DRE字典算法)、TFO(tcp优化)以及协议优化(HTTP、SIP、NFSv3以及email等)等,能有效的消减广域网链路带宽。原理方面这里就不讲了,主要阐述一下其部署方式。
WAAS的部署方式有两种:
1,inline串联模式;
2,旁挂模式(PBR/WCCPv2)。
一般WAAS设备有三种类型的接口,第一种为inline口数量2对,第二种为GE口数量2个,第三种为console接入口。其实设备后面还有一个口"sysmgt”,但是这个口不知道是干什么的,配置里面没有一个相关的配置命令。
1,inline串联模式部署
inline口用于设备做串联模式。inline口成对出现,一个为WAN口,一个为LAN口,一般设备有2对inline口。WAN和LAN口二层互通,就相当于一根导线。inline口不需要配置任何地址等。选择其中一个GE口用作管理访问,配置好ip地址后接通管理网段即可。网络互连拓扑如下:
image
2,旁挂模式部署
对于旁挂模式,inline口就没有用途了。旁挂模式只需要一个接口(一个GE口或者一个port-channel口)就行了,业务流量和管理流量都通过这个借口进行转发。该接口需要配置ip地址,然后再上联设备上面配置PBR或者WCCP将流量牵引过来即可。网络互连拓扑如下:
image
部署特别注意点:WAAS设备至少需要3台才能完成部署,2台用于业务处理,另外一台用于集中管理CM。CM可以为最低端的WAAS设备。三台设备之间必须8443端口互通。
上述物理互联做好后就是做相应的配置了。通过console接入登录系统,默认密码为admin/default。敲入setup命令。按提示进行操作:
Step 1: The following defaults can be configured:
Device mode: Application-accelerator
Interception Method: Inline
Management Interface: InlineGroup 1/0
Autosense: yes
Timezone: UTC 0 0
To keep above defaults and continue configuration, press 'y'
To change above defaults and continue configuration, press 'n' [y]: n
//是否保持上述配置,否则敲入n;
Step 2:
Configure WAAS Settings
------------------------
Select device mode :
1.application-accelerator
2.central-manager
Enter your choice [1]:
//选择设备模式:1为加速模式即用做业务处理;2为集中管理模式;这里先选在1;
Step 3: Enter Central Manager address [#] :
//敲入central manager的地址;
Step 4: Select interception method (inline|wccp|other) [inline]:
//选择互联模式;
Step 5:
Configure network settings
---------------------------
Select interface to configure as management interface:
NO   INTERFACE NAME        STATUS     IP ADDRESS         NETMASK
1:     InlineGroup 1/0        UP       unassigned       unassigned
2:     InlineGroup 1/1        UP       unassigned       unassigned
3: GigabitEthernet 1/0      DOWN       unassigned       unassigned
4: GigabitEthernet 2/0      DOWN       unassigned       unassigned
Enter choice [1]:
//选择一个端口作为管理口,请注意GE口没有配置ip,端口状态就会为DOWN;
Step 6: Configure autosense for duplex and speed . this interface(y/n)[y]:
//选择端口的duplex和speed,一般选择autosense,即敲入y;
Step 7: Enable DHCP . this interface (y/n) [n]:
Step 8: IP address of interface [#]:
Step 9: Netmask of this interface [#]:
Step 10: Default gateway [#]:
Step 11: Domain name server IP [#]:
Step 12: Domain name [#]:
Step 13: Enter hostname [#]:
Step 14: Configure NTP [none]:
Step 15: Enter timezone [UTC 0 0] :
Step 16: Select interface for inline interception:
1) InlineGroup 1/0
2) InlineGroup 1/1
Enter choice :
Configure autosense for duplex and speed . this interface(y/n)[y]:
//选择串联接口; 
Step 17:
The product supports the following licenses:
1. Transport
2. Enterprise
3. Enterprise & Video
Enter the license(s) you purchased [1]:
//选择license;
Do you accept these configurations (y/n) [y]:
Would you like to apply the configurations (y/n) [y]:
到这里为止,作为业务加速模式的WAAS的基本配置就完成了。最后的配置应用确定后就会生效并启用cms发消息给cm管理机进行注册。如果要作为central management来部署的话,在上面的Step2选择2,然后就不会有step16了。
需要注意的是,需要在设备上面另外配置如下命令:
primary-interface
interface         //这条命令主要是指定管理接口,业务加速模式也要指定
device mode central-manager
The new configuration will take effect after a reload。
设备重启后就生效了。
然后使用 https://ip-add:8443来连接设备的GUI。需要注意的是作为业务加速的和集中管理的GUI是不同的。
作为业务加速的GUI:
image
作为集中管理的GUI:
image
在CM上能集中管理配置多台业务加速WAAS,如下图:
image
需要注意的是,当需要删除某一个节点时,先需要在CM上面删除(点击上图设备旁边的图标,然后delete),而且需要命令行登录到设备上使用特权模式命令cms deregister force进行卸载。
到此相关的部署步骤全部完毕,下面是一些重要的命令:
show cms info                //检测设备是否注册上了cm;
show statistics ?             //查看流量情况;
show interface ?              //查看接口模式和状态。

你可能感兴趣的:(部署,职场,Cisco,休闲,WAAS)