You are on page 1of 2

Lab 12.

Configuration and
Verification

Task 1:
For reference information on configuring hostnames, please refer to
earlier labs.

Task 2:
For reference information on configuring IP addressing, please refer
to earlier labs.

Task 3:
R1#config t
Enter configuration commands, one per line. End with CTRL/Z.
R1(config)#int Tunnel 1
R1(config-if)#ip address 10.10.10.1 255.255.255.252
R1(config-if)#tunnel source f0/0
R1(config-if)#tunnel destination 172.16.1.2
R1(config-if)#tunnel mode gre ip

R2(config)#int Tunnel 1
R2(config-if)#ip address 10.10.10.2 255.255.255.252
R2(config-if)#tunnel source f0/0
R2(config-if)#tunnel destination 172.16.1.1
R2(config-if)#tunnel mode gre ip

Task 4:
R1(config)#ip route 192.168.2.0 255.255.255.0 tunnel 1

R2(config)#ip route 192.168.1.0 255.255.255.0 tunnel 1


Task 5:
R1#sh ip interface brief
Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 172.16.1.1 YES manual up up
FastEthernet0/1 192.168.1.1 YES manual up up
Tunnel1 10.10.10.1 YES manual up up

R2#sh ip int brief


Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 172.16.1.2 YES manual up up
FastEthernet0/1 192.168.2.1 YES manual up up
Tunnel1 10.10.10.2 YES manual up up

R1#show interface tunnel 1


Tunnel1 is up, line protocol is up
Hardware is Tunnel
Internet address is 10.10.10.1/30
MTU 1514 bytes, BW 9 Kbit/sec, DLY 500000 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation TUNNEL, loopback not set
Keepalive not set
Tunnel source 172.16.1.1 (FastEthernet0/0), destination 172.16.1.2
Tunnel protocol/transport GRE/IP

R2#show interface tunnel 1


Tunnel1 is up, line protocol is up
Hardware is Tunnel
Internet address is 10.10.10.2/30
MTU 1514 bytes, BW 9 Kbit/sec, DLY 500000 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation TUNNEL, loopback not set
Keepalive not set
Tunnel source 172.16.1.2 (FastEthernet0/0), destination 172.16.1.1
Tunnel protocol/transport GRE/IP

You might also like