У нас вы можете посмотреть бесплатно BGP disable connected check vs ebgp multihop или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
BGP disable-connected-check vs ebgp-multihop - This video will give clear understanding when we can use disable-connected-check and when ebgp-multihop. Here is working configuration, it may help you to create your own lab - Bhiwani Router configuration - ----------------------------------------- ! interface Loopback1 ip address 1.1.1.1 255.255.255.255 ! interface Loopback2 ip address 11.11.11.11 255.255.255.255 ! interface FastEthernet0/0 ip address 12.1.1.1 255.255.255.0 duplex auto speed auto ! interface FastEthernet0/1 no ip address shutdown duplex auto speed auto ! router bgp 100 no synchronization bgp log-neighbor-changes neighbor 2.2.2.2 remote-as 200 neighbor 2.2.2.2 disable-connected-check neighbor 2.2.2.2 update-source Loopback1 neighbor 3.3.3.3 remote-as 300 neighbor 3.3.3.3 ebgp-multihop 2 neighbor 3.3.3.3 update-source Loopback1 no auto-summary ! ip forward-protocol nd ip route 2.2.2.2 255.255.255.255 12.1.1.2 ip route 3.3.3.3 255.255.255.255 12.1.1.2 ! ------------------------------------------- Jaipur Router Configuration ------------------------------------------- ! interface Loopback1 ip address 2.2.2.2 255.255.255.255 ! interface FastEthernet0/0 ip address 12.1.1.2 255.255.255.0 duplex auto speed auto ! interface FastEthernet0/1 ip address 23.1.1.2 255.255.255.0 duplex auto speed auto ! router bgp 200 no synchronization bgp log-neighbor-changes neighbor 1.1.1.1 remote-as 100 neighbor 1.1.1.1 disable-connected-check neighbor 1.1.1.1 update-source Loopback1 no auto-summary ! ip route 1.1.1.1 255.255.255.255 12.1.1.1 ip route 3.3.3.3 255.255.255.255 23.1.1.3 ! --------------------------------------- Mumbai Router Configuration --------------------------------------- ! interface Loopback1 ip address 3.3.3.3 255.255.255.255 ! interface FastEthernet0/0 ip address 23.1.1.3 255.255.255.0 duplex auto speed auto ! interface FastEthernet0/1 no ip address shutdown duplex auto speed auto ! router bgp 300 no synchronization bgp log-neighbor-changes neighbor 1.1.1.1 remote-as 100 neighbor 1.1.1.1 ebgp-multihop 2 neighbor 1.1.1.1 update-source Loopback1 no auto-summary ! ip route 1.1.1.1 255.255.255.255 23.1.1.2 ! -------------------------------------------