Site icon eConfigs

CCNA 4.3: Configure, verify and troubleshoot GRE tunnel connectivity (FREE LAB!)

Overview

Generic routing encapsulation (GRE) is a simple site-to-site VPN tunneling protocol.

 

Study Notes:

 

Labs:

THIS LAB FREE!
PacketTracer Lab: CCNA-4.3-Configure-verify-and-troubleshoot-GRE-tunnel-connectivity.pkt

The objective of this lab is to establish a GRE tunnel between Router1 and Router3 and verify it is working by pinging across the tunnel.

config t
    interface Tunnel 1
        tunnel mode gre ip
        ip address 172.16.0.1 255.255.255.252
        tunnel source s1/0
        tunnel destination 192.168.1.2
        no shut
        exit
    ip route 192.168.1.2 255.255.255.255 192.168.0.2
    ip route 0.0.0.0 0.0.0.0 172.16.0.2
    exit

 

config t
    interface Tunnel 1
        tunnel mode gre ip
        ip address 172.16.0.2 255.255.255.252
        tunnel source s1/1
        tunnel destination 192.168.0.1
        no shut
        exit
    ip route 192.168.0.1 255.255.255.255 192.168.1.1
    ip route 0.0.0.0 0.0.0.0 172.16.0.1
    exit

 

show ip int brief
show interface Tunnel 1
ping 172.16.0.2
ping 172.16.0.1

config t
    interface loopback1
        ip address 10.0.0.1 255.255.255.255
        no shut
traceroute 10.0.0.1
Type escape sequence to abort.
Tracing the route to 10.0.0.1

1 172.16.0.1 6 msec 2 msec 2 msec

 

Exit mobile version