当前位置:网站首页>MPLS experiment
MPLS experiment
2022-07-06 03:11:00 【4o4-】
1. The experimental requirements

2. The experimental steps
The topology is as follows

The configuration is as follows :
R1
R1
sysname R1
#
interface GigabitEthernet0/0/0
ip address 192.168.2.1 255.255.255.0
#
interface LoopBack0
ip address 192.168.1.1 255.255.255.0
#
ip route-static 192.168.3.0 255.255.255.0 192.168.2.2
ip route-static 192.168.4.0 255.255.255.0 192.168.2.2
R2
sysname R2
#
ip vpn-instance a1 // establish VPN Space
ipv4-family //DR value
route-distinguisher 2:2
vpn-target 2:2 export-extcommunity //TR value
vpn-target 2:2 import-extcommunity
#
ip vpn-instance b1
ipv4-family
route-distinguisher 1:1
vpn-target 1:1 export-extcommunity
vpn-target 1:1 import-extcommunity
#
mpls lsr-id 2.2.2.2 // Appoint mplsid1 Number
mpls // Turn on mpls
#
mpls ldp
#
interface GigabitEthernet0/0/0
ip address 23.1.1.1 255.255.255.0
mpls // On the interface mpls
mpls ldp
#
interface GigabitEthernet0/0/1
ip binding vpn-instance b1 // To put VPN Bind the port first and then configure the address , Otherwise IP The address will appear in the common routing table
ip address 192.168.2.2 255.255.255.0
#
interface GigabitEthernet0/0/2
ip binding vpn-instance a1
ip address 192.168.2.2 255.255.255.0
#
interface LoopBack0
ip address 2.2.2.2 255.255.255.255
#
bgp 1
router-id 2.2.2.2
peer 4.4.4.4 as-number 1
peer 4.4.4.4 connect-interface LoopBack0
#
ipv4-family unicast
undo synchronization
peer 4.4.4.4 enable
#
ipv4-family vpnv4
policy vpn-target
peer 4.4.4.4 enable
#
ipv4-family vpn-instance a1 // stay bgp Import VPN a1 The routing
import-route rip 1
#
ipv4-family vpn-instance b1
import-route direct // stay bgp towards VPN b1 Import static and direct routes , Can't write , Because handwriting bgp Can't label the second layer
import-route static
#
ospf 1 router-id 2.2.2.2
area 0.0.0.0
network 2.2.2.2 0.0.0.0
network 23.1.1.1 0.0.0.0
#
rip 1 vpn-instance a1 // by VPN Spatial dynamic routing protocol
undo summary
version 2
network 192.168.2.0
import-route bgp
#
ip route-static vpn-instance b1 192.168.1.0 255.255.255.0 192.168.2.1
R3
sysname R3
#
mpls lsr-id 3.3.3.3
mpls
#
mpls ldp
#
interface GigabitEthernet0/0/0
ip address 34.1.1.1 255.255.255.0
mpls
mpls ldp
#
interface GigabitEthernet0/0/1
ip address 23.1.1.2 255.255.255.0
mpls
mpls ldp
#
interface GigabitEthernet0/0/2
#
interface LoopBack0
ip address 3.3.3.3 255.255.255.255
#
ospf 1 router-id 3.3.3.3
area 0.0.0.0
network 3.3.3.3 0.0.0.0
network 23.1.1.2 0.0.0.0
network 34.1.1.1 0.0.0.0
R4
R4
sysname R4
#
ip vpn-instance a1
ipv4-family
route-distinguisher 2:2
vpn-target 2:2 export-extcommunity
vpn-target 2:2 import-extcommunity
#
ip vpn-instance b1
ipv4-family
route-distinguisher 1:1
vpn-target 1:1 export-extcommunity
vpn-target 1:1 import-extcommunity
#
mpls lsr-id 4.4.4.4
mpls
#
mpls ldp
#
interface GigabitEthernet0/0/0
ip binding vpn-instance b1
ip address 192.168.3.2 255.255.255.0
#
interface GigabitEthernet0/0/1
ip address 34.1.1.2 255.255.255.0
mpls
mpls ldp
#
interface GigabitEthernet0/0/2
ip binding vpn-instance a1
ip address 192.168.3.2 255.255.255.0
#
interface GigabitEthernet4/0/0
ip address 47.1.1.1 255.255.255.0
#
interface NULL0
#
interface LoopBack0
ip address 4.4.4.4 255.255.255.255
#
bgp 1
router-id 4.4.4.4
peer 2.2.2.2 as-number 1
peer 2.2.2.2 connect-interface LoopBack0
#
ipv4-family unicast
undo synchronization
peer 2.2.2.2 enable
#
ipv4-family vpnv4
policy vpn-target
peer 2.2.2.2 enable
#
ipv4-family vpn-instance a1
import-route ospf 2
#
ipv4-family vpn-instance b1
import-route direct
import-route static
#
ospf 1 router-id 4.4.4.4
area 0.0.0.0
network 4.4.4.4 0.0.0.0
network 34.1.1.2 0.0.0.0
#
ospf 2 router-id 4.4.4.4 vpn-instance a1
import-route bgp
area 0.0.0.0
network 192.168.3.2 0.0.0.0
#
ip route-static vpn-instance a1 192.168.4.0 255.255.255.0 192.168.3.1
ip route-static vpn-instance b1 192.168.4.0 255.255.255.0 192.168.3.1
R5
sysname R5
#
interface GigabitEthernet0/0/1
ip address 192.168.3.1 255.255.255.0
#
interface LoopBack0
ip address 192.168.4.1 255.255.255.0
#
ip route-static 192.168.1.0 255.255.255.0 192.168.3.2
ip route-static 192.168.2.0 255.255.255.0 192.168.3.2
R6
sysname R6
#
interface GigabitEthernet0/0/0
ip address 192.168.2.1 255.255.255.0
#
interface LoopBack0
ip address 192.168.1.1 255.255.255.0
#
rip 1
undo summary
version 2
network 192.168.1.0
network 192.168.2.0
R7
sysname R7
#
interface GigabitEthernet0/0/0
ip address 192.168.3.1 255.255.255.0
#
interface GigabitEthernet0/0/1
ip address 47.1.1.2 255.255.255.0
#
interface GigabitEthernet0/0/2
#
interface LoopBack0
ip address 192.168.4.2 255.255.255.0
#
ospf 1 router-id 7.7.7.7
area 0.0.0.0
network 192.168.3.1 0.0.0.0
network 192.168.4.2 0.0.0.0
#
ip route-static 0.0.0.0 0.0.0.0 192.168.3.2
边栏推荐
- Technology sharing | what if Undo is too big
- Performance test method of bank core business system
- 故障分析 | MySQL 耗尽主机内存一例分析
- 【Kubernetes 系列】一文學會Kubernetes Service安全的暴露應用
- Some problem records of AGP gradle
- Who is the winner of PTA
- 微服务注册与发现
- 4. File modification
- Taobao focus map layout practice
- Is there a completely independent localization database technology
猜你喜欢

Installation and use tutorial of cobaltstrike-4.4-k8 modified version

Mysql database operation

#PAT#day10

MySQL advanced notes

Derivation of anti Park transform and anti Clarke transform formulas for motor control

C # create self host webservice

Overview of OCR character recognition methods
![BUUCTF刷题笔记——[极客大挑战 2019]EasySQL 1](/img/37/c38a933ce7fa5d2b8fa597965ffcb2.png)
BUUCTF刷题笔记——[极客大挑战 2019]EasySQL 1

codeforces每日5题(均1700)-第六天

mysqldump数据备份
随机推荐
js 正则过滤和增加富文本中图片前缀
BUUCTF刷题笔记——[极客大挑战 2019]EasySQL 1
技术分享 | undo 太大了怎么办
Jenkins basic knowledge ----- detailed explanation of 03pipeline code
[concept] Web basic concept cognition
NR modulation 1
[network security interview question] - how to penetrate the test file directory through
Selenium share
Audio audiorecord binder communication mechanism
My C language learning records (blue bridge) -- files and file input and output
Apt installation ZABBIX
Solve 9 with C language × 9 Sudoku (personal test available) (thinking analysis)
Reverse repackaging of wechat applet
继承day01
Analyze 菜单分析
CobaltStrike-4.4-K8修改版安装使用教程
MySQL learning notes-10-tablespace recycling
Zhang Lijun: penetrating uncertainty depends on four "invariants"
Introduction to robotframework (II) app startup of appui automation
How does yyds dry inventory deal with repeated messages in the consumption process?