как быстро решить практику 5.1 по Администрированию в ИС

как быстро решить практику 5.1 по Администрированию в ИС

(это не означает, что не надо понимать происходящего)

подробнее данный приём рассматривается здесь

создаём где-нибудь файлы .txt с командами описанными в задании -
для каждого роутера (порядок как в задании) -

два раза кликаем по роутеру и в разделе Config подгружаем файл с прописанной конфигурацией кнопкой merge (merge conf from file - sartup conf)

для 1-ого =

enable
config t
hostname 2600A
enable secret todd
line console 0
password todd
login
line vty 0 4
password todd
login
interface fastethernet 0/0
ip address 172.16.40.1 255.255.255.0
description connection to LAN 40
no shutdown
interface serial 0/0
ip address 172.16.20.2 255.255.255.0
description connection to 2600C
no shutdown
exit
copy run start

для второго =

enable
config t
hostname 2600B
enable secret todd
line console 0
password todd
login
line vty 0 4
password todd
login
interface fastethernet 0/0
ip address 172.16.50.1 255.255.255.0
description connection to LAN 30
no shutdown
interface serial 0/0
ip address 172.16.30.2 255.255.255.0
description connection to 2600C
no shutdown
exit
copy run start

для третьего =

enable
config t
hostname 2600C
enable secret todd
line console 0
password todd
login
line vty 0 4
password todd
login
interface fastethernet 0/0
ip address 172.16.10.1 255.255.255.0
description connection to LAN 10
no shutdown
interface serial 0/0
ip address 172.16.20.1 255.255.255.0
description connection to 2600A
no shutdown
clock rate 64000
no shut
interface serial 0/1
ip address 172.16.30.1 255.255.255.0
description connection to 2600B
clock rate 64000
no shutdown
exit
copy run start