master
serr 2025-04-06 13:48:27 +03:00
commit 1747dc8787
7 changed files with 113 additions and 0 deletions

38
EAST.txt Normal file
View File

@ -0,0 +1,38 @@
enable
configure terminal
no ip domain-lookup
service password-encryption
hostname EAST
enable secret class
line console 0
password cisco
login
logging synchronous
exit
line vty 0 4
password cisco
login
exit
banner motd #Unauthorized access prohibited#
interface f0/1
ip address 172.16.2.1 255.255.255.0
no shutdown
exit
interface Serial0/1/1
ip address 10.2.2.1 255.255.255.252
clock rate 128000
no shutdown
exit
ip route 0.0.0.0 0.0.0.0 10.2.2.2
interface Tunnel0
ip address 172.16.12.2 255.255.255.252
tunnel source 10.2.2.1
tunnel destination 10.1.1.1
no shutdown
exit
router ospf 1
network 172.16.2.0 0.0.0.255 area 0
network 172.16.12.0 0.0.0.3 area 0
end
copy running-config startup-config

26
ISP.txt Normal file
View File

@ -0,0 +1,26 @@
enable
configure terminal
no ip domain-lookup
service password-encryption
hostname ISP
enable secret class
line console 0
password cisco
login
logging synchronous
exit
line vty 0 4
password cisco
login
exit
banner motd #Unauthorized access prohibited#
interface S0/1/0
ip address 10.1.1.2 255.255.255.252
clock rate 128000
no shutdown
interface S0/1/1
ip address 10.2.2.2 255.255.255.252
clock rate 128000
no shutdown
end
copy running-config startup-config

3
PCA_enp2s0.txt Normal file
View File

@ -0,0 +1,3 @@
sudo ip link set dev enp2s0 up
sudo ip address add 172.16.1.3/24 dev enp2s0
sudo ip route add default via 172.16.1.1

3
PCA_enp2s6.txt Normal file
View File

@ -0,0 +1,3 @@
sudo ip link set dev enp2s6 up
sudo ip address add 172.16.1.3/24 dev enp2s6
sudo ip route add default via 172.16.1.1

3
PCC_enp2s0.txt Normal file
View File

@ -0,0 +1,3 @@
sudo ip link set dev enp2s0 up
sudo ip address add 172.16.2.3/24 dev enp2s0
sudo ip route add default via 172.16.2.1

3
PCC_enp2s6.txt Normal file
View File

@ -0,0 +1,3 @@
sudo ip link set dev enp2s6 up
sudo ip address add 172.16.2.3/24 dev enp2s6
sudo ip route add default via 172.16.2.1

37
WEST.txt Normal file
View File

@ -0,0 +1,37 @@
enable
configure terminal
no ip domain-lookup
service password-encryption
hostname WEST
enable secret class
line console 0
password cisco
login
logging synchronous
exit
line vty 0 4
password cisco
login
exit
banner motd #Unauthorized access prohibited#
interface f0/1
ip address 172.16.1.1 255.255.255.0
no shutdown
exit
interface Serial0/1/0
ip address 10.1.1.1 255.255.255.252
clock rate 128000
no shutdown
exit
ip route 0.0.0.0 0.0.0.0 10.1.1.2
interface Tunnel0
ip address 172.16.12.1 255.255.255.252
tunnel source 10.1.1.1
tunnel destination 10.2.2.1
no shutdown
exit
router ospf 1
network 172.16.1.0 0.0.0.255 area 0
network 172.16.12.0 0.0.0.3 area 0
end
copy running-config startup-config