home       basis       routing       switching       advanced       security       overig       testen       english      

Geef een correcte NET-config aan alle PC's

oefening-pt-2025-11-24_124502

 
Geef aan de hand van de tekening en de ip-adressen van de routers een correcte ip-configuratie (ip-adres/netmask/gateway/dns) aan de PC's 1 t.e.m. 4.
 
uitbreiding
een korte inleiding op het routing protocol OSPF
en op seriele lijnen (rode kabel)
download de PT file: routing-ospf-intro_serial-lines_voorbeeld
 
\/\/\/ Router configuratie files \/\/\/

!
hostname R1
!
interface GigabitEthernet0/0
 ip address 10.15.99.1 255.255.254.0
 duplex auto
 speed auto
!
interface GigabitEthernet0/1
 ip address 192.168.17.33 255.255.255.224
 duplex auto
 speed auto
!
interface Serial0/1/0
 ip address 10.31.31.1 255.255.255.252
 clock rate 4000000
!
router ospf 10
 log-adjacency-changes
 network 10.31.31.0 0.0.0.3 area 0
 network 10.15.98.0 0.0.1.255 area 0
 network 192.168.17.32 0.0.0.31 area 0
!
ip classless
!
ip flow-export version 9
!
line con 0
!
line aux 0
!
line vty 0 4
 login
!
end
!
hostname R2
!
interface GigabitEthernet0/1
 ip address 8.8.8.1 255.255.255.0
 duplex auto
 speed auto
!
interface Serial0/1/0
 ip address 10.31.31.2 255.255.255.252
!
router ospf 10
 log-adjacency-changes
 network 8.8.8.0 0.0.0.255 area 0
 network 10.31.31.0 0.0.0.3 area 0
!
line con 0
!
line aux 0
!
line vty 0 4
 login
!
end