I denna laboration utforskas olika nätverkstjänster, deras konfigurationer, IP nätverksuppdelning och statisk routing. Vi kommer inte att gå igenom alla grundläggande konfigurationer utan fokuserar istället på IP-adressering och statisk routing. I tabellen specificeras alla IP-adresser som behövs för laborationen. Observera att DHCP-klienter tilldelas dynamiska IP-adresser.
IP adressering
Device | Interface | IP Address | Subnet Mask |
---|---|---|---|
R1 | G0/0 | 172.30.3.254 | /22 |
G0/1 | 172.30.7.254 | /22 | |
S0/0/0 | 209.65.100.5 | /30 | |
R2 | G0/1 | 8.8.8.1 | /28 |
S0/0/0 | 209.65.100.6 | /30 | |
S0/0/1 | 209.65.100.13 | /30 | |
R3 | G0/0 | 10.10.15.254 | /20 |
G0/1 | 10.10.31.254 | /20 | |
S0/0/1 | 209.65.100.14 | /30 | |
dns1.diginto.se | NIC | 172.30.3.251 | /22 |
srv1.diginto.se | NIC | 172.30.3.252 | /22 |
srv2.diginto.se | NIC | 172.30.3.253 | /22 |
gns1.google.se | NIC | 8.8.8.8 | /28 |
websrv.google.se | NIC | 8.8.8.9 | /28 |
ns1.ng.se | NIC | 10.10.15.251 | /20 |
srv3.ng.se | NIC | 10.10.15.252 | /20 |
srv4.ng.se | NIC | 10.10.15.253 | /20 |
Nätverkstopologi
Routrarna är av modell 1941 och är utrustade med HWIC-2T-modulen för seriella anslutningar. Switcharna är av modell 2960.
Konfigureringar
srv2.diginto.se är en DHCP-server i DIGINTO domänen
IP-adressering:
IP pool konfigureringar:
dns1.diginto.se är en DNS server.
IP adressering:
DNS poster (Records)
srv1.diginto.se är en webbserver, en FTP server, och en email server.
IP adressering
eMAIL server:
eMail klienter:
gns1.google.se är en DNS server
IP adressering:
DNS poster:
Router R1 konfigurenringar:
- Router> enable
- Router# configure terminal
- Router(config)# hostname R1
- R1(config) # no ip domain-lookup
- R1(config) # interface Gig0/0
- R1(config-if)# description Connected to CoreNet LAN
- R1(config-if)# ip address 172.30.3.254 255.255.252.0
- R1(config-if)# no shutdown
- R1(config-if)# exit
- R1(config) # interface Gig0/1
- R1(config-if)# description Connected to AccessNet LAN
- R1(config-if)# ip address 172.30.7.254 255.255.252.0
- R1(config-if)# no shutdown
- R1(config-if)# exit
- R1(config) # interface s0/0/0
- R1(config-if)# description Connected to R2
- R1(config-if)# ip address 209.65.100.5 255.255.255.252
- R1(config-if)# no shutdown
- R1(config-if)# exit
- R1(config)# ip route 8.8.8.0 255.255.255.240 209.65.100.6
- R1(config)# ip route 209.65.100.12 255.255.255.252 209.65.100.6
- R1(config)# ip route 10.10.0.0 255.255.240.0 209.65.100.6
- R1(config)# ip route 10.10.16.0 255.255.240.0 209.65.100.6
- R1(config)# end
- R1# show running-config
- R1# show ip interface brief
- R1# copy running-config startup-config
R2 konfigureringar:
- Router> enable
- Router# configure terminal
- Router(config)# hostname R2
- R2(config) # no ip domain-lookup
- R2(config) # interface Gig0/1
- R2(config-if)# description Connected to Google LAN
- R2(config-if)# ip address 8.8.8.1 255.255.255.240
- R2(config-if)# no shutdown
- R2(config-if)# exit
- R2(config) # interface s0/0/0
- R2(config-if)# description DCE Connected to R1
- R2(config-if)# clock rate 64000
- R2(config-if)# ip address 209.65.100.6 255.255.255.252
- R2(config-if)# no shutdown
- R2(config-if)# exit
- R2(config) # interface s0/0/1
- R2(config-if)# description DCE Connected to R3
- R2(config-if)# clock rate 64000
- R2(config-if)# ip address 209.65.100.13 255.255.255.252
- R2(config-if)# no shutdown
- R2(config-if)# exit
- R2(config)# ip route 172.30.0.0 255.255.252.0 209.65.100.5
- R2(config)# ip route 172.30.4.0 255.255.252.0 209.65.100.5
- R2(config)# ip route 10.10.0.0 255.255.240.0 209.65.100.14
- R2(config)# ip route 10.10.16.0 255.255.240.0 209.65.100.14
- R2(config)# end
- R2# show running-config
- R2# show ip interface brief
- R2# copy running-config startup-config
R3 konfigureringar:
-
Router R1 konfigurenringar:
- Router> enable
- Router# configure terminal
- Router(config)# hostname R3
- R3(config) # no ip domain-lookup
- R3(config) # interface Gig0/0
- R3(config-if)# description Connected to ServerNet LAN
- R3(config-if)# ip address 10.10.15.254 255.255.240.0
- R3(config-if)# no shutdown
- R3(config-if)# exit
- R3(config) # interface Gig0/1
- R3(config-if)# description Connected to ClientNet LAN
- R3(config-if)# ip address ip address 10.10.31.254 255.255.240.0
- R3(config-if)# no shutdown
- R3(config-if)# exit
- R3(config) # interface s0/0/1
- R3(config-if)# description Connected to R2
- R3(config-if)# ip address 209.65.100.14 255.255.255.252
- R3(config-if)# no shutdown
- R3(config-if)# exit
- R3(config)# ip route 8.8.8.0 255.255.255.240 209.65.100.13
- R3(config)# ip route 209.65.100.4 255.255.255.252 209.65.100.13
- R3(config)# ip route 172.30.0.0 255.255.252.0 209.65.100.13
- R3(config)# ip route 172.30.4.0 255.255.252.0 209.65.100.13
- R3(config)# end
- R3# show running-config
- R3# show ip interface brief
- R3# copy running-config startup-config