• BGP基本配置


    在这里插入图片描述

    配置逻辑

    1. 完成所有路由器的IGP配置
    2. 使用直连接口建立EBGP对等体关系
    3. 使用环回接口建立IBGP对等体关系
    4. 使用connect-interface命令修改IBGP建邻源IP地址
    5. 使用next-hop-local命令修改路由传递时的下一跳属性
    6. 若存在使用环回接口建立EBGP对等体关系,则需要建立通讯条件,并使用ebgp-max-hop命令修改TTL值。

    R1

    
    [V200R003C00]
    #
     sysname R1
    #
     snmp-agent local-engineid 800007DB03000000000000
     snmp-agent 
    #
     clock timezone China-Standard-Time minus 08:00:00
    #
    portal local-server load flash:/portalpage.zip
    #
     drop illegal-mac alarm
    #
     wlan ac-global carrier id other ac id 0
    #
     set cpu-usage threshold 80 restore 75
    #
    aaa 
     authentication-scheme default
     authorization-scheme default
     accounting-scheme default
     domain default 
     domain default_admin 
     local-user admin password cipher %$%$K8m.Nt84DZ}e#<0`8bmE3Uw}%$%$
     local-user admin service-type http
    #
    firewall zone Local
     priority 15
    #
    interface GigabitEthernet0/0/0
     ip address 12.0.0.1 255.255.255.0 
    #
    interface GigabitEthernet0/0/1
    #
    interface GigabitEthernet0/0/2
    #
    interface NULL0
    #
    interface LoopBack0
     ip address 1.1.1.1 255.255.255.255 
    #
    bgp 100
     router-id 1.1.1.1
     peer 12.0.0.2 as-number 200 
     #
     ipv4-family unicast
      undo synchronization
      network 1.1.1.1 255.255.255.255 
      peer 12.0.0.2 enable
    #
    user-interface con 0
     authentication-mode password
    user-interface vty 0 4
    user-interface vty 16 20
    #
    wlan ac
    #
    return
    
    • 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
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59

    R2

    
    [V200R003C00]
    #
     sysname R2
    #
     snmp-agent local-engineid 800007DB03000000000000
     snmp-agent 
    #
     clock timezone China-Standard-Time minus 08:00:00
    #
    portal local-server load flash:/portalpage.zip
    #
     drop illegal-mac alarm
    #
     wlan ac-global carrier id other ac id 0
    #
     set cpu-usage threshold 80 restore 75
    #
    aaa 
     authentication-scheme default
     authorization-scheme default
     accounting-scheme default
     domain default 
     domain default_admin 
     local-user admin password cipher %$%$K8m.Nt84DZ}e#<0`8bmE3Uw}%$%$
     local-user admin service-type http
    #
    firewall zone Local
     priority 15
    #
    interface GigabitEthernet0/0/0
     ip address 12.0.0.2 255.255.255.0 
    #
    interface GigabitEthernet0/0/1
     ip address 23.0.0.2 255.255.255.0 
    #
    interface GigabitEthernet0/0/2
    #
    interface NULL0
    #
    interface LoopBack0
     ip address 2.2.2.2 255.255.255.255 
    #
    bgp 200
     router-id 2.2.2.2
     peer 3.3.3.3 as-number 200 
     peer 3.3.3.3 connect-interface LoopBack0
     peer 4.4.4.4 as-number 200 
     peer 4.4.4.4 connect-interface LoopBack0
     peer 12.0.0.1 as-number 100 
     #
     ipv4-family unicast
      undo synchronization
      peer 3.3.3.3 enable
      peer 3.3.3.3 next-hop-local 
      peer 4.4.4.4 enable
      peer 4.4.4.4 next-hop-local 
      peer 12.0.0.1 enable
    #
    ospf 1 router-id 2.2.2.2 
     area 0.0.0.0 
      network 2.2.2.2 0.0.0.0 
      network 23.0.0.2 0.0.0.0 
    #
    user-interface con 0
     authentication-mode password
    user-interface vty 0 4
    user-interface vty 16 20
    #
    wlan ac
    #
    return
    
    • 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
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72

    R3

    
    [V200R003C00]
    #
     sysname R3
    #
     snmp-agent local-engineid 800007DB03000000000000
     snmp-agent 
    #
     clock timezone China-Standard-Time minus 08:00:00
    #
    portal local-server load flash:/portalpage.zip
    #
     drop illegal-mac alarm
    #
     wlan ac-global carrier id other ac id 0
    #
     set cpu-usage threshold 80 restore 75
    #
    aaa 
     authentication-scheme default
     authorization-scheme default
     accounting-scheme default
     domain default 
     domain default_admin 
     local-user admin password cipher %$%$K8m.Nt84DZ}e#<0`8bmE3Uw}%$%$
     local-user admin service-type http
    #
    firewall zone Local
     priority 15
    #
    interface GigabitEthernet0/0/0
     ip address 23.0.0.3 255.255.255.0 
    #
    interface GigabitEthernet0/0/1
     ip address 34.0.0.3 255.255.255.0 
    #
    interface GigabitEthernet0/0/2
    #
    interface NULL0
    #
    interface LoopBack0
     ip address 3.3.3.3 255.255.255.255 
    #
    bgp 200
     router-id 3.3.3.3
     peer 2.2.2.2 as-number 200 
     peer 2.2.2.2 connect-interface LoopBack0
     peer 4.4.4.4 as-number 200 
     peer 4.4.4.4 connect-interface LoopBack0
     #
     ipv4-family unicast
      undo synchronization
      peer 2.2.2.2 enable
      peer 4.4.4.4 enable
    #
    ospf 1 router-id 3.3.3.3 
     area 0.0.0.0 
      network 3.3.3.3 0.0.0.0 
      network 23.0.0.3 0.0.0.0 
      network 34.0.0.3 0.0.0.0 
    #
    user-interface con 0
     authentication-mode password
    user-interface vty 0 4
    user-interface vty 16 20
    #
    wlan ac
    #
    return
    
    • 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
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69

    R4

    
    [V200R003C00]
    #
     sysname R4
    #
     snmp-agent local-engineid 800007DB03000000000000
     snmp-agent 
    #
     clock timezone China-Standard-Time minus 08:00:00
    #
    portal local-server load flash:/portalpage.zip
    #
     drop illegal-mac alarm
    #
     wlan ac-global carrier id other ac id 0
    #
     set cpu-usage threshold 80 restore 75
    #
    aaa 
     authentication-scheme default
     authorization-scheme default
     accounting-scheme default
     domain default 
     domain default_admin 
     local-user admin password cipher %$%$K8m.Nt84DZ}e#<0`8bmE3Uw}%$%$
     local-user admin service-type http
    #
    firewall zone Local
     priority 15
    #
    interface GigabitEthernet0/0/0
     ip address 45.0.0.4 255.255.255.0 
    #
    interface GigabitEthernet0/0/1
     ip address 34.0.0.4 255.255.255.0 
    #
    interface GigabitEthernet0/0/2
    #
    interface NULL0
    #
    interface LoopBack0
     ip address 4.4.4.4 255.255.255.255 
    #
    bgp 200
     router-id 4.4.4.4
     peer 2.2.2.2 as-number 200 
     peer 2.2.2.2 connect-interface LoopBack0
     peer 3.3.3.3 as-number 200 
     peer 3.3.3.3 connect-interface LoopBack0
     peer 5.5.5.5 as-number 300 
     peer 5.5.5.5 ebgp-max-hop 2 
     peer 5.5.5.5 connect-interface LoopBack0
     #
     ipv4-family unicast
      undo synchronization
      peer 2.2.2.2 enable
      peer 2.2.2.2 next-hop-local 
      peer 3.3.3.3 enable
      peer 3.3.3.3 next-hop-local 
      peer 5.5.5.5 enable
    #
    ospf 1 router-id 4.4.4.4 
     area 0.0.0.0 
      network 4.4.4.4 0.0.0.0 
      network 34.0.0.4 0.0.0.0 
    #
    ip route-static 5.5.5.5 255.255.255.255 45.0.0.5
    #
    user-interface con 0
     authentication-mode password
    user-interface vty 0 4
    user-interface vty 16 20
    #
    wlan ac
    #
    return
    
    • 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
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76

    R5

    
    [V200R003C00]
    #
     sysname R5
    #
     snmp-agent local-engineid 800007DB03000000000000
     snmp-agent 
    #
     clock timezone China-Standard-Time minus 08:00:00
    #
    portal local-server load flash:/portalpage.zip
    #
     drop illegal-mac alarm
    #
     wlan ac-global carrier id other ac id 0
    #
     set cpu-usage threshold 80 restore 75
    #
    aaa 
     authentication-scheme default
     authorization-scheme default
     accounting-scheme default
     domain default 
     domain default_admin 
     local-user admin password cipher %$%$K8m.Nt84DZ}e#<0`8bmE3Uw}%$%$
     local-user admin service-type http
    #
    firewall zone Local
     priority 15
    #
    interface GigabitEthernet0/0/0
     ip address 45.0.0.5 255.255.255.0 
    #
    interface GigabitEthernet0/0/1
    #
    interface GigabitEthernet0/0/2
    #
    interface NULL0
    #
    interface LoopBack0
     ip address 5.5.5.5 255.255.255.255 
    #
    interface LoopBack1
     ip address 10.1.1.1 255.255.255.0 
    #
    bgp 300
     router-id 5.5.5.5
     peer 4.4.4.4 as-number 200 
     peer 4.4.4.4 ebgp-max-hop 2 
     peer 4.4.4.4 connect-interface LoopBack0
     #
     ipv4-family unicast
      undo synchronization
      network 10.1.1.0 255.255.255.0 
      peer 4.4.4.4 enable
    #
    ip route-static 4.4.4.4 255.255.255.255 45.0.0.4
    #
    user-interface con 0
     authentication-mode password
    user-interface vty 0 4
    user-interface vty 16 20
    #
    wlan ac
    #
    return
    
    • 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
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66

    测试

    在这里插入图片描述

  • 相关阅读:
    2309d的几个问题
    谈谈我写作生涯的画图技巧
    PMP和CSPM证书,怎么选?
    01_什么是深度学习
    【事务代码】MF60-拉料清单
    【大话云原生】煮饺子与docker、kubernetes之间的关系
    Android博通BCM libbt-vendor.so 分析蓝牙初始化流程
    品牌广告,如何规避风险
    Effective Modern C++[实践]->只要函数不会发射异常,就为其加上noexcept
    操作系统知识点总结——第三章内存管理
  • 原文地址:https://blog.csdn.net/m0_61802503/article/details/134493178