Description: The lab exercise demonstrates configuring static routes on ipv6
Network Diagram :
Instructions:
1. Enter into configuration mode
2. Assign ipv6 addresses to all the devices as per the diagram.
3. On device R1 create a static route to device R3 and set the next-hop ip address
4. On device R3 create a static route to device R1 and set the next-hop ip address
On R1
user@R1>configure
[edit]
user@R1#edit interfaces ge-0/0/0
[edit interfaces ge-0/0/0]
user@R1#set unit 0 family inet6 address 2001:100:10:1::1/64
[edit interfaces ge-0/0/0]
user@R1#exit
[edit]
On R2
user@R2>configure
[edit]
user@R2#edit interfaces ge-0/0/0
[edit interfaces ge-0/0/0]
user@R2#set unit 0 family inet6 address 2001:100:10:1::2/64
[edit interfaces ge-0/0/0]
user@R2#exit
[edit]
user@R2#edit interfaces ge-0/0/1
[edit interfaces ge-0/0/1]
user@R2#set unit 0 family inet6 address 2001:100:20:1::1/64
[edit interfaces ge-0/0/1]
user@R2#exit
On R3
user@R3>configure
[edit]
user@R3#edit interfaces ge-0/0/0
[edit interfaces ge-0/0/0]
user@R3#set unit 0 family inet6 address 2001:100:20:1::2/64
[edit interfaces ge-0/0/0]
user@R3#exit
Adding static route on device R1 and R3
user@R1>configure
[edit]
user@R1#edit routing-options
[edit routing-options]
user@R1#set rib inet6 static route 2001:100:20:1::2/64 next-hop 2001:100:10:1::2
[edit routing-options]
user@R1#exit
[edit]
user@R1#show
routing-options{ rib inet6.0{ static{ route 2001:0100:0020:0001:0000:0000:0000:0002/64 next-hop 2001:0100:0010:0001:0000:0000:0000:0002 } } }
user@R3>configure
[edit]
user@R3#edit routing-options
[edit routing-options]
user@R3#set rib inet6 static route 2001:100:10:1::1/64 next-hop 2001:100:20:1::1
[edit routing-options]
user@R3#exit
[edit]
user@R3#show
routing-options{ rib inet6.0{ static{ route 2001:0100:0010:0001:0000:0000:0000:0001/64 next-hop 2001:0100:0020:0001:0000:0000:0000:0001 } } }