拓扑
要求
- 配置主机名与地址
- 配置OSPF
- 手动配置RID
- 要求R1位DR、R2位BDR
- R3与R4之间启用MD5认证
- 验证R1到4.4.4.4的开销
- R8模拟运营商网络
- 全网通
实现过程
R1配置
- 命令
1 | sys |
R2配置
- 命令
1 | sys |
R3配置
- 命令
1 | sys |
R6配置
- 命令
1 | sys |
R4配置
- 命令
1 | sys |
R8配置
- 命令
1 | sys |
验证R1到4.4.4.4的Cost值
R1出口Cost值
R3出口Cost值
R1到4.4.4.4Cost值
配置R1为DR、R2为BDR
R1配置命令
1
2
3
4
5<R1>sys
Enter system view, return user view with Ctrl+Z.
[R1]int g0/0/0
[R1-GigabitEthernet0/0/0]ospf dr-pri
[R1-GigabitEthernet0/0/0]ospf dr-priority 200
R2配置命令
1
2
3
4
5<R2>sys
Enter system view, return user view with Ctrl+Z.
[R2]int g0/0/0
[R2-GigabitEthernet0/0/0]ospf dr-pri
[R2-GigabitEthernet0/0/0]ospf dr-priority 100
缺省路由发布
配置方法
配置方式 | 备注 |
---|---|
静态配置 | 使用命令: ip route-static 0.0.0.0 0 下一跳地址 |
动态配置 | 使用动态路由协议进行发布 |
图示
命令
1 | [R4]ip route-s |
解析
缺省路由发布步骤1
步骤2
步骤3
路由认证
技术背景
攻击演示
拓扑
命令
通过抓包找到OSPF的网段
R10配置
1
2
3
4
5
6
7
8
9
10
11
12
13
14<Huawei>sys
Enter system view, return user view with Ctrl+Z.
[Huawei]sys R10
[R10]int g0/0/0
[R10-GigabitEthernet0/0/0]ip add 192.168.0.10 24
Apr 15 2021 18:26:48-08:00 R10 %%01IFNET/4/LINK_STATE(l)[0]:The line protocol IP
on the interface GigabitEthernet0/0/0 has entered the UP state.
[R10-GigabitEthernet0/0/0]int lo 1
[R10-LoopBack1]ip add 4.4.4.4 32
[R10-LoopBack1]
[R10-GigabitEthernet0/0/0]ospf 1
[R10-ospf-1]a 0
[R10-ospf-1-area-0.0.0.0]net 192.168.0.10 0.0.0.0
[R10-ospf-1-area-0.0.0.0]net 4.4.4.4 0.0.0.0
结果展示
到4.4.4.4的路由
出现新的邻居
认证
命令
- 命令
命令 | 备注 |
---|---|
int g0/0/0 ospf authentication-mode md5 1 cipher wuchao |
配置接口认证 |
a 0 authentication-mode md5 1 cipher wuchao |
配置区域认证 |
PS:如果上面的同时配置,接口配置优先生效 配置时候 MD5的id必须一致 |
配置
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25#R1
<R1>sys
Enter system view, return user view with Ctrl+Z.
[R1]int g0/0/0
[R1-GigabitEthernet0/0/0]ospf au
[R1-GigabitEthernet0/0/0]ospf authentication-mode md5 1 cip
[R1-GigabitEthernet0/0/0]ospf authentication-mode md5 1 cipher wuchao
#R2
<R2>sys
Enter system view, return user view with Ctrl+Z.
[R2]int g0/0/0
[R2-GigabitEthernet0/0/0]ospf authentication-mode md5 1 cipher wuchao
#R3
<R3>sys
Enter system view, return user view with Ctrl+Z.
[R3]int g0/0/0
[R3-GigabitEthernet0/0/0]ospf authentication-mode md5 1 cipher wuchao
#R6
<R6>sys
Enter system view, return user view with Ctrl+Z.
[R6]int g0/0/0
[R6-GigabitEthernet0/0/0]ospf authentication-mode md5 1 cipher wuchao开启认证,阻止攻击
解析
认证
OSPF认证方式