Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
26 views2 pages

Switch

The document configures interfaces and routing on a core router with connections to multiple networks and BGP configurations to exchange routing information. It sets interface IP addresses and descriptions, enables interfaces, sets the clock rate, and adds network routes to the BGP routing tables.

Uploaded by

Je Rel
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
26 views2 pages

Switch

The document configures interfaces and routing on a core router with connections to multiple networks and BGP configurations to exchange routing information. It sets interface IP addresses and descriptions, enables interfaces, sets the clock rate, and adds network routes to the BGP routing tables.

Uploaded by

Je Rel
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

conf t

no ip domain-lookup
line con 0
logging synchronous
exec-timeout 0 0

interface Lo0
description Internet Network
ip address 10.1.1.1 255.255.255.0
exit
interface Serial0/0
description -> ITA
ip address 10.0.0.1 255.255.255.252
clock rate 128000
no shutdown
end

interface Lo0
description Core router network link 1
ip address 192.168.0.1 255.255.255.0
exit
interface Lo1
description Core router network link 2
ip address 192.168.1.1 255.255.255.0
exit
interface Serial0/0
description ->
ip address 10.0.0.2 255.255.255.252
no shutdown
exit
interface Serial0/1
description ->
ip address 172.16.0.2 255.255.255.252
clock rate 128000
no shutdown
end

interface Lo0
description Internet Network
ip address 172.16.1.1 255.255.255.0
exit
interface Serial0/1
description -> ITA
ip address 172.16.0.1 255.255.255.252
no shutdown
end

router bgp 200


neighbor 10.0.0.2 remote-as 100
network 10.1.1.0 mask 255.255.255.0

router bgp 300


neighbor 172.16.0.2 remote-as 100
network 172.16.1.0 mask 255
router bgp 100
neighbor 10.0.0.1 remote-as 200
neighbor 172.16.0.1 remote-as 300
network 192.168.0.0
network 192.168.1.0

tclsh

foreach address {
10.0.0.1
10.0.0.2
10.1.1.1
172.16.0.1
172.16.0.2
172.16.1.1
192.168.0.1
192.168.1.1
} {
ping $address }

You might also like