In deze opzet gaan we gebruik maken van Static routing
Hier voor maken we gebruik van 3 routers de 2 switchen en 2 computers
- UN-LAB-RT-01
- UN-LAB-RT-02
- UN-LAB-RT-03
- UN-LAB-SW-01
- UN-LAB-SW-02
- UN-LPT-01
- UN-LAB-NIC-ONDER
De switchen in deze configuratie zullen geen configuratie mee krijgen maar alleen als verbinding apparaat dienen
We geven de UN-LAB-NIC-Onder de volgende ip gegevens
IP 192.168.1.50
Subnetmask 255.255.255.0
Gateway 192.168.1.1
En de UN-LPT-01 de volgende ip gegevens
IP 192.168.3.50
Subnetmask 255.255.255.0
Gateway 192.168.3.1
Als eersten geven we de routers een default configuratie mee
Router> | Enable |
Router# | Conf t |
Router(config)# | Hostname UN-LAB-RT-01/02/03 |
UN-LAB-RT-01/02/03 (config)# | Line console 0 |
UN-LAB-RT-01/02/03 (config-line)# | Password ****** |
UN-LAB-RT-01/02/03 (config-line)# | Login |
UN-LAB-RT-01/02/03 (config-line)# | Loggin Synchronous |
UN-LAB-RT-01/02/03 (config-line)# | Exec-timeout 0 0 |
UN-LAB-RT-01/02/03 (config-line)# | Exit |
UN-LAB-RT-01/02/03 (config)# | line vty 0 15 |
UN-LAB-RT-01/02/03 (config-line)# | Password ****** |
UN-LAB-RT-01/02/03 (config-line)# | exit |
UN-LAB-RT-01/02/03 (config)# | banner motd &****************************
*** UN-LAB-RT-01/02/03 *** *** UN-LAB.local *** ****************************& |
UN-LAB-RT-01/02/03 (config)# | Exit |
UN-LAB-RT-01/02/03 # | Wr me |
*** Waar 01/02/03 staat voor de router die je configureert.
Dit is de basis configuratiie wij alle 3 de routers mee geven. Als je dit gedaan hebt dan gaan we de interfaces configureren
UN-LAB-RT-01
UN-LAB-RT-01# | Conf t |
UN-LAB-RT-01(config)# | Int fa0/0 |
UN-LAB-RT-01(config-if)# | Ip address 192.168.2.1 255.255.255.0 |
UN-LAB-RT-01(config-if)# | No shutdown |
UN-LAB-RT-01(config-if)# | Exit |
UN-LAB-RT-01(config)# | Int fa0/1 |
UN-LAB-RT-01(config-if)# | Ip address 192.168.1.2 255.255.255.0 |
UN-LAB-RT-01(config-if)# | No shutdown |
UN-LAB-RT-01(config-if)# | Exit |
UN-LAB-RT-02
UN-LAB-RT-02# | Conf t |
UN-LAB-RT-02(config)# | Int fa0/0 |
UN-LAB-RT-02(config-if)# | Ip address 192.168.2.2 255.255.255.0 |
UN-LAB-RT-02(config-if)# | No shutdown |
UN-LAB-RT-02(config-if)# | Exit |
UN-LAB-RT-02(config)# | Int fa0/1 |
UN-LAB-RT-02(config-if)# | Ip address 192.168.3.1 255.255.255.0 |
UN-LAB-RT-02(config-if)# | No shutdown |
UN-LAB-RT-02(config-if)# | Exit |
UN-LAB-RT-03
UN-LAB-RT-03# | Conf t |
UN-LAB-RT-03(config)# | Int fa0/0 |
UN-LAB-RT-03(config-if)# | Ip address 68.200.11.98 255.255.252.0 |
UN-LAB-RT-03(config-if)# | No shutdown |
UN-LAB-RT-03(config-if)# | Exit |
UN-LAB-RT-03(config)# | Int fa0/1 |
UN-LAB-RT-03(config-if)# | Ip address 192.168.1.1 255.255.255.0 |
UN-LAB-RT-03(config-if)# | No shutdown |
UN-LAB-RT-03(config-if)# | Exit |
Nu is het als je in Router 2 zit kan je pingen naar 192.168.3.50 en naar 192.168.2.1 maar een ping sturen naar 192.168.2.1 maar naar 192.168.1.2 of 192.168.1.50 kan je niet benaderen. Dit omdat er geen routing tabel is aangemaakt op de switch
We beginnen hiervoor bij UN-LAB-RT-03 als eerste
UN-LAB-RT-03
UN-LAB-RT-03# | Conf t |
UN-LAB-RT-03(config)# | Ip route 192.168.1.0 255.255.255.0 192.168.2.1 |
UN-LAB-RT-02
UN-LAB-RT-02# | Conf t |
UN-LAB-RT-02(config)# | Ip route 192.168.3.0 255.255.255.0 192.168.2.2 |
UN-LAB-RT-02(config)# | ip route 0.0.0.0 0.0.0.0 192.168.1.1 |
In UN-LAB-RT-02 zit een extra route de 0.0.0.0 0.0.0.0 192.168.1.1 om alle verkeer dat er word gestuurd naar een willekeurig ip nummer door gestuurd word naar router 192.168.1.1
UN-LAB-RT-01
UN-LAB-RT-01# | Conf t |
UN-LAB-RT-01(config)# | Ip route 192.168.3.0 255.255.255.0 192.168.1.2 |
UN-LAB-RT-01(config)# | ip route 0.0.0.0 0.0.0.0 68.200.11.99 |
UN-LAB-RT-01(config)# | Ip route 192.168.2.0 255.255.255.0 192.168.1.2 |
In de UN-LAB-RT-01 zit een extra route de 192.168.2.0 255.255.255.0 192.168.1.2 die het ook mogelijk maakt om de UN-LAB-RT-02 op de interface 0/0 te bereiken.
Nu door deze configuratie is het ook mogelijk om vanaf de UN-LPT-01 een ping te sturen naar 192.168.1.50 | 192.168.1.1 | 8.8.8.8
Maar ook van de UN-LAB-NIC-ONDER kan je pingen naar 192.168.2.2 |192.168.3.50