diff options
| author | Sven Eisenhauer <sven@sven-eisenhauer.net> | 2023-11-10 15:11:48 +0100 |
|---|---|---|
| committer | Sven Eisenhauer <sven@sven-eisenhauer.net> | 2023-11-10 15:11:48 +0100 |
| commit | 33613a85afc4b1481367fbe92a17ee59c240250b (patch) | |
| tree | 670b842326116b376b505ec2263878912fca97e2 /Bachelor/Computernetze2/CFG | |
| download | Studium-master.tar.gz Studium-master.tar.bz2 | |
Diffstat (limited to 'Bachelor/Computernetze2/CFG')
| -rw-r--r-- | Bachelor/Computernetze2/CFG/isp_ripv2.txt | 48 | ||||
| -rw-r--r-- | Bachelor/Computernetze2/CFG/isp_ripv2_part3.txt | 49 | ||||
| -rw-r--r-- | Bachelor/Computernetze2/CFG/isp_ripv2_part3a.txt | 52 | ||||
| -rw-r--r-- | Bachelor/Computernetze2/CFG/routerx.txt | 46 | ||||
| -rw-r--r-- | Bachelor/Computernetze2/CFG/santa_cruz2_part3.txt | 76 | ||||
| -rw-r--r-- | Bachelor/Computernetze2/CFG/santacruz1_ripv2-part3.txt | 60 | ||||
| -rw-r--r-- | Bachelor/Computernetze2/CFG/vargas01.txt | 64 | ||||
| -rw-r--r-- | Bachelor/Computernetze2/CFG/vargas02.txt | 77 | ||||
| -rw-r--r-- | Bachelor/Computernetze2/CFG/westasman01.txt | 41 | ||||
| -rw-r--r-- | Bachelor/Computernetze2/CFG/westasman01a.txt | 63 | ||||
| -rw-r--r-- | Bachelor/Computernetze2/CFG/westasman02.txt | 63 | ||||
| -rw-r--r-- | Bachelor/Computernetze2/CFG/westasman03.txt | 97 |
12 files changed, 736 insertions, 0 deletions
diff --git a/Bachelor/Computernetze2/CFG/isp_ripv2.txt b/Bachelor/Computernetze2/CFG/isp_ripv2.txt new file mode 100644 index 0000000..b9455c3 --- /dev/null +++ b/Bachelor/Computernetze2/CFG/isp_ripv2.txt @@ -0,0 +1,48 @@ +conf t
+!
+hostname ISP
+!
+enable secret class
+!
+!
+ip subnet-zero
+!
+interface ethernet 0
+ip add 10.0.0.1 255.0.0.0
+no shutdown
+!
+!
+interface S0
+ip add 192.168.4.25 255.255.255.252
+ clockrate 56000
+ no shutdown
+!
+interface s1
+ip add 192.168.4.21 255.255.255.252
+clockrate 56000
+no shutdown
+!
+ip classless
+ip route 10.0.0.0 255.255.255.0 S0
+no ip http server
+!
+router rip
+network 10.0.0.0
+network 192.168.4.0
+version 2
+no auto-summary
+!
+line con 0
+ password cisco
+ login
+ transport input none
+ logging synchronous
+ exec-timeout 0 0
+line aux 0
+line vty 0 4
+ password cisco
+ login
+!
+end
+
+!
\ No newline at end of file diff --git a/Bachelor/Computernetze2/CFG/isp_ripv2_part3.txt b/Bachelor/Computernetze2/CFG/isp_ripv2_part3.txt new file mode 100644 index 0000000..22baa78 --- /dev/null +++ b/Bachelor/Computernetze2/CFG/isp_ripv2_part3.txt @@ -0,0 +1,49 @@ +conf t
+!
+hostname ISP
+!
+enable secret class
+!
+!
+ip subnet-zero
+!
+interface ethernet 0
+ip add 10.0.0.1 255.0.0.0
+no shutdown
+!
+!
+interface S0
+ip add 192.168.4.25 255.255.255.252
+ clockrate 56000
+ no shutdown
+!
+interface s1
+ip add 192.168.4.21 255.255.255.252
+clockrate 56000
+no shutdown
+!
+ip classless
+ip route 10.0.0.0 255.255.255.0 S0
+no ip http server
+!
+router rip
+network 10.0.0.0
+network 192.168.4.0
+version 2
+no auto-summary
+redistribute static
+!
+line con 0
+ password cisco
+ login
+ transport input none
+ logging synchronous
+ exec-timeout 0 0
+line aux 0
+line vty 0 4
+ password cisco
+ login
+!
+end
+
+!
\ No newline at end of file diff --git a/Bachelor/Computernetze2/CFG/isp_ripv2_part3a.txt b/Bachelor/Computernetze2/CFG/isp_ripv2_part3a.txt new file mode 100644 index 0000000..3a88cf1 --- /dev/null +++ b/Bachelor/Computernetze2/CFG/isp_ripv2_part3a.txt @@ -0,0 +1,52 @@ +conf t
+!
+hostname ISP
+!
+enable secret class
+no ip domain-lookup
+!
+!
+ip subnet-zero
+!
+interface ethernet 0
+ip add 10.0.0.1 255.0.0.0
+no shutdown
+!
+!
+interface S0
+ip add 192.168.4.25 255.255.255.252
+ clockrate 56000
+ no shutdown
+!
+interface s1
+ip add 192.168.4.21 255.255.255.252
+clockrate 56000
+no shutdown
+!
+ip classless
+ip route 10.0.0.0 255.255.255.0 S0
+no ip http server
+!
+ip route 207.0.0.0 255.0.0.0 null0
+!
+router rip
+network 10.0.0.0
+network 192.168.4.0
+version 2
+no auto-summary
+redistribute static
+!
+line con 0
+ password cisco
+ login
+ transport input none
+ logging synchronous
+ exec-timeout 0 0
+line aux 0
+line vty 0 4
+ password cisco
+ login
+!
+end
+
+!
\ No newline at end of file diff --git a/Bachelor/Computernetze2/CFG/routerx.txt b/Bachelor/Computernetze2/CFG/routerx.txt new file mode 100644 index 0000000..75a32cf --- /dev/null +++ b/Bachelor/Computernetze2/CFG/routerx.txt @@ -0,0 +1,46 @@ +conf t
+!
+hostname ISP
+!
+enable secret class
+!
+!
+ip subnet-zero
+!
+interface ethernet 0
+ip add 10.0.0.1 255.0.0.0
+no shutdown
+!
+!
+interface S0
+ip add 192.168.4.25 255.255.255.252
+ clockrate 56000
+ no shutdown
+!
+interface s1
+ip add 192.168.4.21 255.255.255.252
+clockrate 56000
+no shutdown
+!
+ip classless
+ip route 10.0.0.0 255.255.255.0 S0
+no ip http server
+!
+router rip
+network 10.0.0.0
+network 192.168.4.0
+!
+line con 0
+ password cisco
+ login
+ transport input none
+ logging synchronous
+ exec-timeout 0 0
+line aux 0
+line vty 0 4
+ password cisco
+ login
+!
+end
+
+!
\ No newline at end of file diff --git a/Bachelor/Computernetze2/CFG/santa_cruz2_part3.txt b/Bachelor/Computernetze2/CFG/santa_cruz2_part3.txt new file mode 100644 index 0000000..063b345 --- /dev/null +++ b/Bachelor/Computernetze2/CFG/santa_cruz2_part3.txt @@ -0,0 +1,76 @@ +SantaCruz2#sh run
+Building configuration...
+
+Current configuration:
+!
+version 12.0
+service timestamps debug uptime
+service timestamps log uptime
+no service password-encryption
+!
+hostname SantaCruz2
+!
+enable secret 5 $1$wo4Q$4C093Ih61j.oZSp4ao5YO/
+!
+!
+!
+!
+!
+ip subnet-zero
+no ip domain-lookup
+!
+!
+!
+process-max-time 200
+!
+interface Loopback0
+ ip address 172.30.110.1 255.255.255.0
+ no ip directed-broadcast
+!
+interface Loopback1
+ ip address 172.30.200.17 255.255.255.240
+ no ip directed-broadcast
+!
+interface Loopback2
+ ip address 172.30.200.33 255.255.255.240
+ no ip directed-broadcast
+!
+interface Ethernet0
+ ip address 172.30.100.1 255.255.255.0
+ no ip directed-broadcast
+!
+interface Ethernet1
+ no ip address
+ no ip directed-broadcast
+ shutdown
+!
+interface Serial0
+ ip address 192.168.4.22 255.255.255.252
+ no ip directed-broadcast
+ no ip mroute-cache
+!
+interface Serial1
+ no ip address
+ no ip directed-broadcast
+ shutdown
+!
+router rip
+ version 2
+ network 172.30.0.0
+ network 192.168.4.0
+ no auto-summary
+!
+ip classless
+no ip http server
+!
+!
+line con 0
+ transport input none
+line aux 0
+line vty 0 4
+ password cisco
+ login
+!
+end
+
+SantaCruz2#
\ No newline at end of file diff --git a/Bachelor/Computernetze2/CFG/santacruz1_ripv2-part3.txt b/Bachelor/Computernetze2/CFG/santacruz1_ripv2-part3.txt new file mode 100644 index 0000000..18fc701 --- /dev/null +++ b/Bachelor/Computernetze2/CFG/santacruz1_ripv2-part3.txt @@ -0,0 +1,60 @@ +version 12.0
+service timestamps debug uptime
+service timestamps log uptime
+no service password-encryption
+!
+hostname SantaCruz1
+!
+enable secret 5 $1$J6AL$k6kln5.B25xPf4MW.Th0R0
+!
+!
+!
+!
+!
+ip subnet-zero
+no ip domain-lookup
+!
+!
+!
+process-max-time 200
+!
+interface Loopback0
+ ip address 172.30.2.1 255.255.255.0
+ no ip directed-broadcast
+!
+interface Ethernet0
+ ip address 172.30.1.1 255.255.255.0
+ no ip directed-broadcast
+!
+interface Serial0
+ ip address 192.168.4.26 255.255.255.252
+ no ip directed-broadcast
+ no ip mroute-cache
+!
+interface Serial1
+ no ip address
+ no ip directed-broadcast
+ shutdown
+!
+router rip
+ version 2
+ network 172.30.0.0
+ network 192.168.4.0
+ no auto-summary
+!
+ip classless
+no ip http server
+!
+!
+line con 0
+ password cisco
+ logging synchronous
+ login
+ transport input none
+line aux 0
+line vty 0 4
+ password cisco
+ logging synchronous
+ login
+!
+end
\ No newline at end of file diff --git a/Bachelor/Computernetze2/CFG/vargas01.txt b/Bachelor/Computernetze2/CFG/vargas01.txt new file mode 100644 index 0000000..78f5c24 --- /dev/null +++ b/Bachelor/Computernetze2/CFG/vargas01.txt @@ -0,0 +1,64 @@ +ena
+conf t
+service timestamps debug uptime
+service timestamps log uptime
+no service password-encryption
+!
+hostname Vargas
+!
+enable secret 5 $1$AH.p$o8UjA9wqYalR2vGcI78YP.
+!
+ip subnet-zero
+no ip domain-lookup
+!
+process-max-time 200
+!
+interface Ethernet0
+ ip address 192.168.20.1 255.255.255.252
+ no ip directed-broadcast
+ no shutdown
+!
+interface Serial0
+ no ip address
+ no ip directed-broadcast
+ no ip mroute-cache
+ no fair-queue
+ clockrate 56000
+!
+interface Serial1
+ no ip address
+ no ip directed-broadcast
+ clockrate 56000
+!
+interface lo0
+ip address 201.0.0.1 255.255.255.255
+!
+interface lo1
+ip address 192.168.30.1 255.255.255.0
+!
+interface lo2
+ip address 192.168.20.5 255.255.255.0
+!
+router ospf 10
+ network 192.168.30.0 0.0.0.3 area 0
+ network 192.168.20.0 0.0.0.255 area 0
+!
+ip classless
+no ip http server
+!
+!
+line con 0
+ exec-timeout 0 0
+ password cisco
+ logging synchronous
+ login
+ transport input none
+line aux 0
+line vty 0 4
+ password cisco
+ login
+!
+
+
+end
+
diff --git a/Bachelor/Computernetze2/CFG/vargas02.txt b/Bachelor/Computernetze2/CFG/vargas02.txt new file mode 100644 index 0000000..ced5515 --- /dev/null +++ b/Bachelor/Computernetze2/CFG/vargas02.txt @@ -0,0 +1,77 @@ +ena
+conf t
+service timestamps debug uptime
+service timestamps log uptime
+no service password-encryption
+!
+hostname Vargas
+!
+enable secret 5 $1$AH.p$o8UjA9wqYalR2vGcI78YP.
+!
+!
+!
+!
+!
+ip subnet-zero
+no ip domain-lookup
+!
+!
+!
+process-max-time 200
+!
+interface Loopback0
+ ip address 201.0.0.1 255.255.255.255
+ no ip directed-broadcast
+!
+interface Loopback1
+ ip address 192.168.30.1 255.255.255.0
+ no ip directed-broadcast
+!
+interface Loopback2
+ ip address 192.168.20.5 255.255.255.252
+ no ip directed-broadcast
+!
+interface Ethernet0
+ bandwidth 10000
+ ip address 192.168.20.1 255.255.255.252
+ no ip directed-broadcast
+ ip ospf message-digest-key 1 md5 secret
+ ip ospf hello-interval 5
+!
+interface Serial0
+ no ip address
+ no ip directed-broadcast
+ no ip mroute-cache
+ shutdown
+ no fair-queue
+ clockrate 56000
+!
+interface Serial1
+ no ip address
+ no ip directed-broadcast
+ shutdown
+ clockrate 56000
+!
+router ospf 10
+ network 192.168.20.0 0.0.0.255 area 0
+ network 192.168.30.0 0.0.0.3 area 0
+ area 0 authentication message-digest
+!
+ip classless
+no ip http server
+!
+!
+line con 0
+ exec-timeout 0 0
+ password cisco
+ logging synchronous
+ login
+ transport input none
+line aux 0
+line vty 0 4
+ password cisco
+ login
+!
+
+end
+
diff --git a/Bachelor/Computernetze2/CFG/westasman01.txt b/Bachelor/Computernetze2/CFG/westasman01.txt new file mode 100644 index 0000000..bbcd323 --- /dev/null +++ b/Bachelor/Computernetze2/CFG/westasman01.txt @@ -0,0 +1,41 @@ +conf t
+!
+hostname Westasman
+!
+enable secret class
+no ip domain-lookup
+!
+!
+ip subnet-zero
+
+!
+interface S0
+ip add 172.16.224.2 255.255.255.252
+ clockrate 56000
+ no shutdown
+!
+interface s1
+ip add 172.16.224.6 255.255.255.252
+clockrate 56000
+no shutdown
+!
+ip classless
+no ip http server
+!
+router eigrp 100
+network 172.16.0.0
+!
+line con 0
+ password cisco
+ login
+ transport input none
+ logging synchronous
+ exec-timeout 0 0
+line aux 0
+line vty 0 4
+ password cisco
+ login
+!
+end
+!
+
diff --git a/Bachelor/Computernetze2/CFG/westasman01a.txt b/Bachelor/Computernetze2/CFG/westasman01a.txt new file mode 100644 index 0000000..cdc72db --- /dev/null +++ b/Bachelor/Computernetze2/CFG/westasman01a.txt @@ -0,0 +1,63 @@ +Westasman#sh run
+Building configuration...
+
+Current configuration:
+!
+version 12.0
+service timestamps debug uptime
+service timestamps log uptime
+no service password-encryption
+!
+hostname Westasman
+!
+enable secret 5 $1$AH.p$o8UjA9wqYalR2vGcI78YP.
+!
+!
+!
+!
+!
+ip subnet-zero
+no ip domain-lookup
+!
+!
+!
+process-max-time 200
+!
+interface Ethernet0
+ no ip address
+ no ip directed-broadcast
+ shutdown
+!
+interface Serial0
+ ip address 172.16.224.2 255.255.255.252
+ no ip directed-broadcast
+ no ip mroute-cache
+ no fair-queue
+ clockrate 56000
+!
+interface Serial1
+ ip address 172.16.224.6 255.255.255.252
+ no ip directed-broadcast
+ clockrate 56000
+!
+router eigrp 100
+ network 172.16.0.0
+!
+ip classless
+no ip http server
+!
+!
+line con 0
+ exec-timeout 0 0
+ password cisco
+ logging synchronous
+ login
+ transport input none
+line aux 0
+line vty 0 4
+ password cisco
+ login
+!
+end
+
+Westasman#
\ No newline at end of file diff --git a/Bachelor/Computernetze2/CFG/westasman02.txt b/Bachelor/Computernetze2/CFG/westasman02.txt new file mode 100644 index 0000000..03bde86 --- /dev/null +++ b/Bachelor/Computernetze2/CFG/westasman02.txt @@ -0,0 +1,63 @@ +Westasman#sh run
+Building configuration...
+
+Current configuration:
+!
+version 12.0
+service timestamps debug uptime
+service timestamps log uptime
+no service password-encryption
+!
+hostname Westasman
+!
+enable secret 5 $1$AH.p$o8UjA9wqYalR2vGcI78YP.
+!
+!
+!
+!
+!
+ip subnet-zero
+no ip domain-lookup
+!
+!
+!
+process-max-time 200
+!
+interface Ethernet0
+ ip address 192.168.72.1 255.255.255.0
+ no ip directed-broadcast
+!
+interface Serial0
+ ip address 192.168.64.2 255.255.255.252
+ no ip directed-broadcast
+ no ip mroute-cache
+ no fair-queue
+ clockrate 56000
+!
+interface Serial1
+ ip address 192.168.64.6 255.255.255.252
+ no ip directed-broadcast
+ clockrate 56000
+!
+router eigrp 100
+ network 192.168.64.0
+ network 192.168.72.0
+!
+ip classless
+no ip http server
+!
+!
+line con 0
+ exec-timeout 0 0
+ password cisco
+ logging synchronous
+ login
+ transport input none
+line aux 0
+line vty 0 4
+ password cisco
+ login
+!
+end
+
+Westasman#
\ No newline at end of file diff --git a/Bachelor/Computernetze2/CFG/westasman03.txt b/Bachelor/Computernetze2/CFG/westasman03.txt new file mode 100644 index 0000000..1fe37c4 --- /dev/null +++ b/Bachelor/Computernetze2/CFG/westasman03.txt @@ -0,0 +1,97 @@ +Westasman#sh run
+Building configuration...
+
+Current configuration:
+!
+version 12.0
+service timestamps debug uptime
+service timestamps log uptime
+no service password-encryption
+!
+hostname Westasman
+!
+enable secret 5 $1$AH.p$o8UjA9wqYalR2vGcI78YP.
+!
+!
+!
+!
+!
+ip subnet-zero
+no ip domain-lookup
+!
+!
+!
+process-max-time 200
+!
+interface Loopback0
+ ip address 172.16.8.1 255.255.255.0
+ no ip directed-broadcast
+!
+interface Loopback1
+ ip address 172.16.9.1 255.255.255.0
+ no ip directed-broadcast
+!
+interface Loopback2
+ ip address 172.16.10.1 255.255.255.0
+ no ip directed-broadcast
+!
+interface Loopback3
+ ip address 172.16.11.1 255.255.255.0
+ no ip directed-broadcast
+!
+interface Loopback4
+ ip address 172.16.12.1 255.255.255.0
+ no ip directed-broadcast
+!
+interface Loopback5
+ ip address 172.16.13.1 255.255.255.0
+ no ip directed-broadcast
+!
+interface Loopback6
+ ip address 172.16.14.1 255.255.255.0
+ no ip directed-broadcast
+!
+interface Loopback7
+ ip address 172.16.15.1 255.255.255.0
+ no ip directed-broadcast
+!
+interface Ethernet0
+ ip address 192.168.72.1 255.255.255.0
+ no ip directed-broadcast
+!
+interface Serial0
+ ip address 192.168.64.2 255.255.255.252
+ no ip directed-broadcast
+ no ip mroute-cache
+ no fair-queue
+ clockrate 56000
+!
+interface Serial1
+ ip address 192.168.64.6 255.255.255.252
+ no ip directed-broadcast
+ clockrate 56000
+!
+router eigrp 100
+ network 172.16.0.0 0.0.0.255
+ network 192.168.64.0
+ network 192.168.72.0
+ no auto-summary
+!
+ip classless
+no ip http server
+!
+!
+line con 0
+ exec-timeout 0 0
+ password cisco
+ logging synchronous
+ login
+ transport input none
+line aux 0
+line vty 0 4
+ password cisco
+ login
+!
+end
+
+Westasman#
\ No newline at end of file |
