Created
January 15, 2026 02:24
-
-
Save Arthur-Vii/c825ddf125dcf8df975b52aead00c5a9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| router 1 | |
| Router> enable | |
| Router# configure terminal | |
| Router(config)# router bgp 65001 | |
| Router(config-router)# neighbor 10.10.10.2 remote-as 65002 | |
| Router(config-router)# network 192.168.1.0 mask 255.255.255.0 | |
| Router(config-router)# end | |
| router 2 | |
| Router> enable | |
| Router# configure terminal | |
| Router(config)# router bgp 65002 | |
| Router(config-router)# neighbor 10.10.10.1 remote-as 65001 | |
| Router(config-router)# network 192.168.2.0 mask 255.255.255.0 | |
| Router(config-router)# end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment