From 90219adba382af7f89311d9be3871e1834563ced Mon Sep 17 00:00:00 2001 From: melenilya Date: Tue, 8 Apr 2025 16:54:12 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20FINAL/R4.txt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FINAL/R4.txt | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 FINAL/R4.txt diff --git a/FINAL/R4.txt b/FINAL/R4.txt new file mode 100644 index 0000000..be84f35 --- /dev/null +++ b/FINAL/R4.txt @@ -0,0 +1,46 @@ +enable +configure terminal +no ip domain-lookup +service password-encryption +hostname R4-DHCP +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# +service dhcp +ip dhcp pool VLAN_C_POOL +network 192.168.3.0 255.255.255.0 +default-router 192.168.3.1 +ip dhcp pool VLAN_D_POOL +network 192.168.4.0 255.255.255.0 +default-router 192.168.4.1 +ip dhcp excluded-address 192.168.3.1 +ip dhcp excluded-address 192.168.4.1 +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +interface g0/1 +ip address 172.16.1.1 255.255.255.0 +no shutdown +exit +interface g0/0 +ip address 10.1.1.1 255.255.255.252 +no shutdown +exit +ip route 0.0.0.0 0.0.0.0 +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 \ No newline at end of file