① IRF 简介
IRF: Intelligent Resilient Framework,智能弹性架构,是一种软件虚拟化技术。它的核心思想是将多台设备通过IRF物理端口连接在一起,进行必要的配置后,虚拟化成一台“分布式设备”。使用这种虚拟化技术可以实现多台设备的协同工作、统一管理和不间断维护。
为了便于描述,这个“虚拟设备”也称为IRF。所以,本文中的IRF有两层意思,一个是指IRF技术,一个是指IRF设备。 类似于以前的“堆叠”技术。
三个优点:
① 简化管理 ② 高可用性 ③ 灵活扩展网络
组网架构
IRF的连接拓扑有两种:链形连接和环形连接,如所示。
· 相比环形连接,链形连接对成员设备的物理位置要求更低,主要用于成员设备物理位置分散的组网。
· 环形连接比链形连接更可靠。因为当链形连接中出现链路故障时,会引起IRF分裂;而环形连接中某条链路故障时,会形成链形连接,IRF的业务不会受到影响。
② IRF 链形堆叠
sw1:
irf member 1 priority 5 将sw1 优先级配置为5 使其成为master
int ten 1/0/49
shutdown 接口需先shutdown
irf-port 1/1 创建irf 接口1/1
port group interface Ten-GigabitEthernet1/0/49
注意:1 表示member ID
1 表示irf 接口ID
注意2:第二数字最多是2即一台交换机上的IRF port 接口最多有两个,而且irf port接口连接时必须交叉连接。
例如:1/1--2/2 2/1---3/2
sw2:
irf member 1 renumber 2 将sw2 重新编号 2
save
reboot 重启
int range Ten-GigabitEthernet 2/0/49 to Ten-GigabitEthernet 2/0/50
shutdown
irf-port 2/1
port group interface Ten-GigabitEthernet2/0/50
irf-port 2/2
port group interface Ten-GigabitEthernet2/0/49
sw3:
irf member 1 renumber 3 将sw3 重新编号 3
save
reboot 重启
int ten 3/0/50
shutdown
irf-port 3/2
port group interface Ten-GigabitEthernet3/0/50
收尾阶段:sw1 sw2 sw3
先将相关接口全部 undo shutdown
int ten x/0/x
undo shutdown
save 注意此时一定要保存:防止自动重启后配置丢失
把所有的堆叠线缆全部拔掉
irf-port-configuration active 激活irf 配置
save 再次保存
最后插线缆
调试命令:dis irf
③ IRF 环形堆叠 :配置在上面链形堆叠的基础之上配置的。
sw1:
int ten 1/0/51
shutdown
irf-port 1/2
port group interface Ten-GigabitEthernet1/0/51
int 1/0/51
undo shutdown
save
sw3:
int ten 3/0/51
shutdown
irf-port 3/1
port group interface Ten-GigabitEthernet3/0/51
int 3/0/51
undo shutdwon
save
收尾阶段:所有配置都保存后
sw1 sw3
irf-port-configuration active
断线 测试IRF 冗余性!!
④ IRF + 链路捆绑
在前两小节基础之上配置
sw1:
irf-port 1/2
port group interface Ten-GigabitEthernet1/0/50
链路捆绑配置:
sw1:
int Bridge-Aggregation 1 创建聚合接口1
int range Gi 1/0/1 Gi 2/0/2
port link-aggregation group 1 将两个接口加入聚合组1
接入层交换机:
int Bridge-Aggregation 1
int range Gi 1/0/1 Gi 1/0/2
port link-aggregation group 1
⑤ 综合实验
接入交换机:
vlan 20
interface Bridge-Aggregation1
port link-type trunk
port trunk permit vlan all
interface GigabitEthernet1/0/5
port access vlan 20
sw1:
interface Bridge-Aggregation1
port link-type trunk
port trunk permit vlan all
vlan 20
int vlan 20
ip address 192.168.20.1 24 作为用户网关
综合实验part2:
三层链路聚合:
R1:
int loopback 0
ip add 8.8.8.8 24
interface Route-Aggregation 5
ip address 192.168.254.1 255.255.255.0
interface GigabitEthernet6/0
port link-aggregation group 5
interface GigabitEthernet6/1
port link-aggregation group 5
sw1:
interface GigabitEthernet1/0/3
port link-mode route
combo enable copper
port link-aggregation group 5
interface GigabitEthernet2/0/3
port link-mode route
combo enable copper
port link-aggregation group 5
interface Route-Aggregation 5
ip address 192.168.254.2 255.255.255.0
sw1:ip route-static 0.0.0.0 0 192.168.254.1
R1: ip route-static 192.168.0.0 16 192.168.254.2