User Tools

Site Tools


documentation:examples:ipv6_only_bgp_ospf_ripng_isis_lab_frrouting
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


Next revision
documentation:examples:ipv6_only_bgp_ospf_ripng_isis_lab_frrouting [2020/01/30 11:21] – created fabien
Line 1: Line 1:
 +====== IPv6 only BGP/OSPF/RIPNG/ISIS lab with FRRouting ======
 +
 +This lab has been done with BSDRP under bhyve and it show an example of BGP/ISIS/RIPNG/OSPF interactions with IPv6 only.
 +
 +===== Presentation =====
 +
 +==== Network diagram ====
 +
 +Here is the logical and physical view:
 +
 +{{:documentation:examples:lab_virtuel_v6only.png|}}
 +
 +==== Description and limitations ====
 +
 +This lab has been done to improve IPv6 use and routing experience.
 +The routers have been configured int the simpliest way. No authentication or log have been configured (and this is bad !!!)
 +
 +I also tried to make some "funnies" BGP interconnections. 
 +- The IGP protocol do not send routes to the EGP protocol
 +- Inside an area, BGP border routers exchange their routes
 +
 +The LAB_v6only_GW is a router used to make an interconnexion with a global lab network
 +
 +The host are not described here but a simple host vith ipv6 auto-configuration is enough
 +
 +===== Setting-up the lab =====
 +
 +==== Downloading BSD Router Project images ====
 +
 +Download BSDRP serial image (prevent to have to use an X display) on Sourceforge.
 +
 +==== Download Lab scripts =====
 +
 +Some scripts have been done to configure bridge and tap interfaces on a server. Also, they linked router vtnet interfaces with the good tap in bhyve
 +Those scripts are comming soon...
 +
 +===== Routers configuration =====
 +
 +==== OSPF_R1 ====
 +<code>
 +sysrc hostname=OSPF_R1
 +sysrc ifconfig_vtnet0_ipv6="up"
 +sysrc ifconfig_vtnet1_ipv6="up"
 +sysrc frr_enable=yes
 +
 +cat > /usr/local/etc/frr/frr.conf <<EOF
 +frr version 7.2
 +frr defaults traditional
 +hostname OSPF_R1
 +!
 +interface lo0
 + ipv6 address 2001:db8:1:fff1::1/128
 +!
 +interface vtnet2
 + ipv6 address 2001:db8:1:ffff::5/127
 +!
 +interface vtnet3
 + ipv6 address 2001:db8:1:ffff::3/127
 +!
 +router bgp 65001
 + bgp router-id 0.0.1.1
 + neighbor 2001:db8:1:fff1::3 remote-as 65001
 + neighbor 2001:db8:1:fff1::3 interface lo0
 + neighbor 2001:db8:1:ffff::2 remote-as 65500
 + neighbor 2001:db8:1:ffff::4 remote-as 65000
 + !
 + address-family ipv4 unicast
 +  no neighbor 2001:db8:1:fff1::3 activate
 +  no neighbor 2001:db8:1:ffff::2 activate
 +  no neighbor 2001:db8:1:ffff::4 activate
 + exit-address-family
 + !
 + address-family ipv6 unicast
 +  network 2001:db8:1:1afe::/64
 +  network 2001:db8:1:fff1::/64
 +  network 2001:db8:1:ffff::2/127
 +  network 2001:db8:1:ffff::4/127
 +  neighbor 2001:db8:1:fff1::3 activate
 +  neighbor 2001:db8:1:fff1::3 route-map Tag_Internal in
 +  neighbor 2001:db8:1:ffff::2 activate
 +  neighbor 2001:db8:1:ffff::2 prefix-list receive_from_65500 in
 +  neighbor 2001:db8:1:ffff::2 prefix-list send_to_65500 out
 +  neighbor 2001:db8:1:ffff::2 route-map IPv6_Set-Nexthop_65500 out
 +  neighbor 2001:db8:1:ffff::4 activate
 +  neighbor 2001:db8:1:ffff::4 prefix-list receive_from_65000 in
 +  neighbor 2001:db8:1:ffff::4 prefix-list send_to_65000 out
 +  neighbor 2001:db8:1:ffff::4 route-map IPv6_Set-Nexthop_65000 out
 + exit-address-family
 +!
 +router ospf6
 + ospf6 router-id 0.0.1.1
 + redistribute connected
 + redistribute bgp route-map Exclude_Internal
 + interface vtnet0 area 0.0.0.0
 + interface vtnet1 area 0.0.0.0
 +!
 +ipv6 access-list all seq 5 permit any
 +!
 +ipv6 prefix-list receive_from_65000 seq 100 permit any
 +ipv6 prefix-list receive_from_65500 seq 100 permit any
 +ipv6 prefix-list send_to_65000 seq 100 permit any
 +ipv6 prefix-list send_to_65500 seq 100 permit any
 +!
 +route-map Exclude_Internal deny 65001
 + match tag 65001
 +!
 +route-map Exclude_Internal permit 65535
 + match ipv6 address any
 +!
 +route-map IPv6_Set-Nexthop_65000 permit 65535
 + match ipv6 address all
 + set ipv6 next-hop peer-address
 +!
 +route-map IPv6_Set-Nexthop_65500 permit 65535
 + match ipv6 address all
 + set ipv6 next-hop peer-address
 +!
 +route-map Tag_Internal permit 65535
 + match ipv6 address all
 + set tag 65001
 +!
 +line vty
 +!
 +EOF
 +hostname OSPF_R1
 +service netif restart
 +service frr start
 +config save
 +</code>
 +
 +==== OSPF_R2 ====
 +<code>
 +sysrc hostname=OSPF_R3
 +sysrc ifconfig_vtnet0_ipv6="up"
 +sysrc ifconfig_vtnet1_ipv6="up"
 +sysrc frr_enable=yes
 +
 +cat > /usr/local/etc/frr/frr.conf <<EOF
 +frr version 7.2
 +frr defaults traditional
 +hostname OSPF_R2
 +!
 +interface lo0
 + ipv6 address 2001:db8:1:fff1::2/128
 +!
 +interface vtnet2
 + ipv6 address 2001:db8:1:1afe::/64
 + ipv6 nd prefix 2001:db8:1:1afe::/64
 + ipv6 nd ra-interval 5
 + no ipv6 nd suppress-ra
 +!
 +router ospf6
 + ospf6 router-id 0.0.1.2
 + redistribute connected
 + interface vtnet0 area 0.0.0.0
 + interface vtnet1 area 0.0.0.0
 +!
 +line vty
 +!
 +EOF
 +hostname OSPF_R3
 +service netif restart
 +service frr start
 +config save
 +</code>
 +
 +==== OSPF_R3 ====
 +<code>
 +sysrc hostname=OSPF_R3
 +sysrc ifconfig_vtnet0_ipv6="up"
 +sysrc ifconfig_vtnet1_ipv6="up"
 +sysrc frr_enable=yes
 +
 +cat > /usr/local/etc/frr/frr.conf <<EOF
 +frr version 7.2
 +frr defaults traditional
 +hostname OSPF_R3
 +!
 +interface lo0
 + ipv6 address 2001:db8:1:fff1::3/128
 +!
 +interface vtnet2
 + ipv6 address 2001:db8:1:ffff::6/127
 +!
 +router bgp 65001
 + bgp router-id 0.0.1.3
 + neighbor 2001:db8:1:fff1::1 remote-as 65001
 + neighbor 2001:db8:1:fff1::1 interface lo0
 + neighbor 2001:db8:1:ffff::7 remote-as 65003
 + !
 + address-family ipv4 unicast
 +  no neighbor 2001:db8:1:fff1::1 activate
 +  no neighbor 2001:db8:1:ffff::7 activate
 + exit-address-family
 + !
 + address-family ipv6 unicast
 +  network 2001:db8:1:1afe::/64
 +  network 2001:db8:1:fff1::/64
 +  network 2001:db8:1:ffff::6/127
 +  neighbor 2001:db8:1:fff1::1 activate
 +  neighbor 2001:db8:1:fff1::1 route-map Tag_Internal in
 +  neighbor 2001:db8:1:ffff::7 activate
 +  neighbor 2001:db8:1:ffff::7 prefix-list receive_from_65003 in
 +  neighbor 2001:db8:1:ffff::7 prefix-list send_to_65003 out
 +  neighbor 2001:db8:1:ffff::7 route-map IPv6_Set-Nexthop_65003 out
 + exit-address-family
 +!
 +router ospf6
 + ospf6 router-id 0.0.1.3
 + redistribute connected
 + redistribute bgp route-map Exclude_Internal
 + interface vtnet0 area 0.0.0.0
 + interface vtnet1 area 0.0.0.0
 +!
 +ipv6 access-list all seq 5 permit any
 +!
 +ipv6 prefix-list receive_from_65003 seq 100 permit any
 +ipv6 prefix-list send_to_65003 seq 100 permit any
 +!
 +route-map Exclude_Internal deny 65001
 + match tag 65001
 +!
 +route-map Exclude_Internal permit 65535
 + match ipv6 address any
 +!
 +route-map IPv6_Set-Nexthop_65003 permit 65535
 + match ipv6 address all
 + set ipv6 next-hop peer-address
 +!
 +route-map Tag_Internal permit 65535
 + match ipv6 address all
 + set tag 65001
 +!
 +line vty
 +!
 +EOF
 +hostname OSPF_R3
 +service netif restart
 +service frr start
 +config save
 +</code>
 +
 +==== OSPF_R4 ====
 +<code>
 +sysrc hostname=OSPF_R4
 +sysrc ifconfig_vtnet0_ipv6="up"
 +sysrc ifconfig_vtnet1_ipv6="up"
 +sysrc frr_enable=yes
 +
 +cat > /usr/local/etc/frr/frr.conf <<EOF
 +frr version 7.2
 +frr defaults traditional
 +hostname OSPF_R4
 +!
 +interface lo0
 + ipv6 address 2001:db8:1:fff1::4/128
 +!
 +router ospf6
 + ospf6 router-id 0.0.1.4
 + redistribute connected
 + interface vtnet0 area 0.0.0.0
 + interface vtnet1 area 0.0.0.0
 +!
 +line vty
 +!
 +EOF
 +hostname OSPF_R4
 +service netif restart
 +service frr start
 +config save
 +</code>
 +
 +==== RIPNG_R1 ====
 +<code>
 +sysrc hostname=RIPNG_R1
 +sysrc ifconfig_vtnet0_ipv6="up"
 +sysrc ifconfig_vtnet1_ipv6="up"
 +sysrc frr_enable=yes
 +
 +cat > /usr/local/etc/frr/frr.conf <<EOF
 +frr version 7.2
 +frr defaults traditional
 +hostname RIPNG_R1
 +!
 +interface lo0
 + ipv6 address 2001:db8:1:fff3::1/128
 +!
 +interface vtnet2
 + ipv6 address 2001:db8:1:ffff::7/127
 +!
 +router-id 0.0.3.1
 +!
 +router ripng
 + network vtnet1
 + network vtnet0
 + redistribute connected
 + redistribute bgp route-map Exclude_Internal
 +!
 +router bgp 65003
 + bgp router-id 0.0.3.1
 + neighbor 2001:db8:1:fff3::3 remote-as 65003
 + neighbor 2001:db8:1:fff3::3 interface lo0
 + neighbor 2001:db8:1:ffff::6 remote-as 65001
 + !
 + address-family ipv4 unicast
 +  no neighbor 2001:db8:1:fff3::3 activate
 +  no neighbor 2001:db8:1:ffff::6 activate
 + exit-address-family
 + !
 + address-family ipv6 unicast
 +  network 2001:db8:1:3afe::/64
 +  network 2001:db8:1:fff3::/64
 +  network 2001:db8:1:ffff::6/127
 +  neighbor 2001:db8:1:fff3::3 activate
 +  neighbor 2001:db8:1:fff3::3 route-map Tag_Internal in
 +  neighbor 2001:db8:1:ffff::6 activate
 +  neighbor 2001:db8:1:ffff::6 prefix-list receive_from_65001 in
 +  neighbor 2001:db8:1:ffff::6 prefix-list send_to_65001 out
 +  neighbor 2001:db8:1:ffff::6 route-map IPv6_Set-Nexthop_65001 out
 + exit-address-family
 +!
 +ipv6 access-list all seq 5 permit any
 +!
 +ipv6 prefix-list receive_from_65001 seq 100 permit any
 +ipv6 prefix-list send_to_65001 seq 100 permit any
 +!
 +route-map Exclude_Internal deny 65003
 + match tag 65003
 +!
 +route-map Exclude_Internal permit 65535
 +!
 +route-map IPv6_Set-Nexthop_65001 permit 65535
 + match ipv6 address all
 + set ipv6 next-hop peer-address
 +!
 +route-map Tag_Internal permit 65535
 + match ipv6 address all
 + set tag 65003
 +!
 +line vty
 +!
 +EOF
 +hostname RIPNG_R1
 +service netif restart
 +service frr start
 +config save
 +</code>
 +
 +==== RIPNG_R2 ====
 +<code>
 +sysrc hostname=RIPNG_R2
 +sysrc ifconfig_vtnet0_ipv6="up"
 +sysrc ifconfig_vtnet1_ipv6="up"
 +sysrc frr_enable=yes
 +
 +cat > /usr/local/etc/frr/frr.conf <<EOF
 +
 +EOF
 +hostname RIPNG_R2
 +service netif restart
 +service frr start
 +config save
 +</code>
 +
 +==== RIPNG_R3 ====
 +<code>
 +sysrc hostname=RIPNG_R3
 +sysrc ifconfig_vtnet0_ipv6="up"
 +sysrc ifconfig_vtnet1_ipv6="up"
 +sysrc frr_enable=yes
 +
 +cat > /usr/local/etc/frr/frr.conf <<EOF
 +
 +EOF
 +hostname RIPNG_R3
 +service netif restart
 +service frr start
 +config save
 +</code>
 +
 +==== RIPNG_R4 ====
 +<code>
 +sysrc hostname=RIPNG_R4
 +sysrc ifconfig_vtnet0_ipv6="up"
 +sysrc ifconfig_vtnet1_ipv6="up"
 +sysrc frr_enable=yes
 +
 +cat > /usr/local/etc/frr/frr.conf <<EOF
 +
 +EOF
 +hostname RIPNG_R4
 +service netif restart
 +service frr start
 +config save
 +</code>
 +
 +==== ISIS_R1 ====
 +<code>
 +sysrc hostname=ISIS_R1
 +sysrc ifconfig_vtnet0_ipv6="up"
 +sysrc ifconfig_vtnet1_ipv6="up"
 +sysrc frr_enable=yes
 +
 +cat > /usr/local/etc/frr/frr.conf <<EOF
 +
 +EOF
 +hostname ISIS_R1
 +service netif restart
 +service frr start
 +config save
 +</code>
 +
 +==== ISIS_R2 ====
 +<code>
 +sysrc hostname=ISIS_R2
 +sysrc ifconfig_vtnet0_ipv6="up"
 +sysrc ifconfig_vtnet1_ipv6="up"
 +sysrc frr_enable=yes
 +
 +cat > /usr/local/etc/frr/frr.conf <<EOF
 +
 +EOF
 +hostname ISIS_R2
 +service netif restart
 +service frr start
 +config save
 +</code>
 +
 +==== ISIS_R3 ====
 +<code>
 +sysrc hostname=ISIS_R3
 +sysrc ifconfig_vtnet0_ipv6="up"
 +sysrc ifconfig_vtnet1_ipv6="up"
 +sysrc frr_enable=yes
 +
 +cat > /usr/local/etc/frr/frr.conf <<EOF
 +
 +EOF
 +hostname ISIS_R3
 +service netif restart
 +service frr start
 +config save
 +</code>
 +
 +==== ISIS_R4 ====
 +<code>
 +sysrc hostname=ISIS_R4
 +sysrc ifconfig_vtnet0_ipv6="up"
 +sysrc ifconfig_vtnet1_ipv6="up"
 +sysrc frr_enable=yes
 +
 +cat > /usr/local/etc/frr/frr.conf <<EOF
 +
 +EOF
 +hostname ISIS_R4
 +service netif restart
 +service frr start
 +config save
 +</code>
 +
 +==== BGP_R1 ====
 +<code>
 +sysrc hostname=BGP_R1
 +sysrc frr_enable=yes
 +
 +cat > /usr/local/etc/frr/frr.conf <<EOF
 +
 +EOF
 +hostname BGP_R1
 +service netif restart
 +service frr start
 +config save
 +</code>
 +
 +==== BGP_R2 ====
 +<code>
 +sysrc hostname=BGP_R2
 +sysrc frr_enable=yes
 +
 +cat > /usr/local/etc/frr/frr.conf <<EOF
 +
 +EOF
 +hostname BGP_R2
 +service netif restart
 +service frr start
 +config save
 +</code>
 +
 +==== BGP_R3 ====
 +<code>
 +sysrc hostname=BGP_R3
 +sysrc frr_enable=yes
 +
 +cat > /usr/local/etc/frr/frr.conf <<EOF
 +
 +EOF
 +hostname BGP_R3
 +service netif restart
 +service frr start
 +config save
 +</code>
 +
 +==== BGP_R4 ====
 +<code>
 +sysrc hostname=BGP_R4
 +sysrc frr_enable=yes
 +
 +cat > /usr/local/etc/frr/frr.conf <<EOF
 +
 +EOF
 +hostname BGP_R4
 +service netif restart
 +service frr start
 +config save
 +</code>
 +
 +==== LAB_v6only_GW ====
 +<code>
 +sysrc hostname=LAB_v6only_GW
 +sysrc ifconfig_vtnet0_ipv6="up"
 +sysrc frr_enable=yes
 +
 +cat > /usr/local/etc/frr/frr.conf <<EOF
 +frr version 7.2
 +frr defaults traditional
 +hostname LAB_v6only_GW
 +!
 +interface lo0
 + ip address 172.28.0.251/32
 + ipv6 address 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc/128
 +!
 +interface vtnet0
 + ip address 192.168.0.35/27
 + ip ospf area 0.0.0.0
 +!
 +interface vtnet1
 + ipv6 address 2001:db8:1:ffff::2/127
 +!
 +interface vtnet2
 + ipv6 address 2001:db8:1:ffff::/127
 +!
 +router bgp 65500
 + bgp router-id 0.0.6.251
 + neighbor 2001:db8:1:ffff::1 remote-as 65000
 + neighbor 2001:db8:1:ffff::1 interface vtnet2
 + neighbor 2001:db8:1:ffff::1 update-source 2001:db8:1:ffff::
 + neighbor 2001:db8:1:ffff::3 remote-as 65001
 + neighbor 2001:db8:1:ffff::3 interface vtnet1
 + neighbor 2001:db8:1:ffff::3 update-source 2001:db8:1:ffff::2
 + !
 + address-family ipv4 unicast
 +  no neighbor 2001:db8:1:ffff::1 activate
 +  no neighbor 2001:db8:1:ffff::3 activate
 + exit-address-family
 + !
 + address-family ipv6 unicast
 +  network ::/0
 +  network 2001:db8:1:ffff::/127
 +  network 2001:db8:1:ffff::2/127
 +  network 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc/128
 +  neighbor 2001:db8:1:ffff::1 activate
 +  neighbor 2001:db8:1:ffff::1 prefix-list receive_from_65000 in
 +  neighbor 2001:db8:1:ffff::1 prefix-list send_to_65000 out
 +  neighbor 2001:db8:1:ffff::1 route-map IPv6_Set-Nexthop_65000 out
 +  neighbor 2001:db8:1:ffff::3 activate
 +  neighbor 2001:db8:1:ffff::3 prefix-list receive_from_65001 in
 +  neighbor 2001:db8:1:ffff::3 prefix-list send_to_65001 out
 +  neighbor 2001:db8:1:ffff::3 route-map IPv6_Set-Nexthop_65001 out
 + exit-address-family
 +!
 +router ospf
 + ospf router-id 172.28.0.251
 + redistribute connected
 +!
 +router ospf6
 + ospf6 router-id 0.0.6.251
 + redistribute connected
 + redistribute bgp
 + interface vtnet0 area 0.0.0.0
 +!
 +ipv6 access-list all seq 5 permit any
 +!
 +ipv6 prefix-list ipv6_all seq 5 permit any
 +ipv6 prefix-list receive_from_65000 seq 100 permit any
 +ipv6 prefix-list receive_from_65001 seq 100 permit any
 +ipv6 prefix-list send_to_65000 seq 100 permit any
 +ipv6 prefix-list send_to_65001 seq 100 permit any
 +!
 +route-map IPv6_Set-Nexthop_65000 permit 65535
 + match ipv6 address all
 + set ipv6 next-hop peer-address
 +!
 +route-map IPv6_Set-Nexthop_65001 permit 65535
 + match ipv6 address all
 + set ipv6 next-hop peer-address
 +!
 +route-map IPv6_Set-Nexthop_65500 permit 65535
 + match ipv6 address all
 + set ipv6 next-hop peer-address
 +!
 +line vty
 +!
 +EOF
 +hostname LAB_v6only_GW
 +service netif restart
 +service frr start
 +config save
 +</code>
 +
 +
 +===== Final testing =====
 +
 +Ping and traceroute from LAB_v6only_GW lo0 interface loopback from client interface:
 +
 +<code>
 +root@RIPNGC_H1:~ # ping6 -c 5 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc
 +PING6(56=40+8+8 bytes) 2001:db8:1:3afe:2a0:98ff:fea0:e84c --> 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc
 +16 bytes from 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc, icmp_seq=0 hlim=59 time=2.229 ms
 +16 bytes from 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc, icmp_seq=1 hlim=59 time=2.054 ms
 +16 bytes from 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc, icmp_seq=2 hlim=59 time=2.134 ms
 +16 bytes from 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc, icmp_seq=3 hlim=59 time=1.872 ms
 +16 bytes from 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc, icmp_seq=4 hlim=59 time=2.038 ms
 +
 +--- 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc ping6 statistics ---
 +5 packets transmitted, 5 packets received, 0.0% packet loss
 +round-trip min/avg/max/std-dev = 1.872/2.066/2.229/0.118 ms
 +
 +root@RIPNGC_H1:~ # traceroute6 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc
 +traceroute6 to 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc (2001:db8:ffff:ffff:ffff:ffff:ffff:fffc) from 2001:db8:1:3afe:2a0:98ff:fea0:e84c, 64 hops max, 20 byte packets
 +  2001:db8:1:3afe::  0.533 ms  0.389 ms  0.261 ms
 +  2001:db8:1:fff3:: 0.838 ms  0.559 ms  0.444 ms
 +  2001:db8:1:ffff:: 0.815 ms  0.949 ms  0.737 ms
 +  2001:db8:1:1afe::  1.089 ms  1.100 ms  1.047 ms
 +  2001:db8:1:fff1:: 1.357 ms  1.590 ms  1.349 ms
 +  2001:db8:ffff:ffff:ffff:ffff:ffff:fffc  1.697 ms  1.775 ms  1.726 ms
 +root@RIPNGC_H1:~ #
 +</code>
 +
 +<code>
 +root@OSPFC_H1:~ # ping6 -c 5 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc
 +PING6(56=40+8+8 bytes) 2001:db8:1:1afe:2a0:98ff:fe25:f93e --> 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc
 +16 bytes from 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc, icmp_seq=0 hlim=62 time=1.285 ms
 +16 bytes from 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc, icmp_seq=1 hlim=62 time=0.951 ms
 +16 bytes from 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc, icmp_seq=2 hlim=62 time=1.101 ms
 +16 bytes from 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc, icmp_seq=3 hlim=62 time=1.005 ms
 +16 bytes from 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc, icmp_seq=4 hlim=62 time=0.996 ms
 +
 +--- 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc ping6 statistics ---
 +5 packets transmitted, 5 packets received, 0.0% packet loss
 +round-trip min/avg/max/std-dev = 0.951/1.068/1.285/0.119 ms
 +root@OSPFC_H1:~ # traceroute6 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc
 +traceroute6 to 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc (2001:db8:ffff:ffff:ffff:ffff:ffff:fffc) from 2001:db8:1:1afe:2a0:98ff:fe25:f93e, 64 hops max, 20 byte packets
 +  2001:db8:1:1afe::  0.419 ms  0.305 ms  0.271 ms
 +  2001:db8:1:fff1:: 0.534 ms  0.559 ms  0.514 ms
 +  2001:db8:ffff:ffff:ffff:ffff:ffff:fffc  0.720 ms  0.831 ms  0.719 ms
 +root@OSPFC_H1:~ #
 +</code>
 +
 +<code>
 +root@ISISC_H1:~ # ping6 -c 5 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc
 +PING6(56=40+8+8 bytes) 2001:db8:1:2afe:2a0:98ff:fecc:620c --> 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc
 +16 bytes from 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc, icmp_seq=0 hlim=60 time=1.949 ms
 +16 bytes from 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc, icmp_seq=1 hlim=60 time=1.591 ms
 +16 bytes from 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc, icmp_seq=2 hlim=60 time=1.603 ms
 +16 bytes from 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc, icmp_seq=3 hlim=60 time=1.572 ms
 +16 bytes from 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc, icmp_seq=4 hlim=60 time=1.629 ms
 +
 +--- 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc ping6 statistics ---
 +5 packets transmitted, 5 packets received, 0.0% packet loss
 +round-trip min/avg/max/std-dev = 1.572/1.669/1.949/0.141 ms
 +root@ISISC_H1:~ #  traceroute6 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc
 +traceroute6 to 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc (2001:db8:ffff:ffff:ffff:ffff:ffff:fffc) from 2001:db8:1:2afe:2a0:98ff:fecc:620c, 64 hops max, 20 byte packets
 +  2001:db8:1:2afe::  0.475 ms  0.346 ms  0.311 ms
 +  2001:db8:1:fff2:: 0.619 ms  0.541 ms  0.479 ms
 +  2001:db8:1:ffff::11  0.790 ms  0.790 ms  0.794 ms
 +  2001:db8:1:: 1.075 ms  1.037 ms  0.896 ms
 +  2001:db8:ffff:ffff:ffff:ffff:ffff:fffc  1.210 ms  1.545 ms  1.362 ms
 +root@ISISC_H1:~ #
 +</code>
 +
 +<code>
 +root@BGPC_H1:~ # ping6 -c 5 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc
 +PING6(56=40+8+8 bytes) 2001:db8:1:afe:2a0:98ff:feef:16da --> 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc
 +16 bytes from 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc, icmp_seq=0 hlim=62 time=1.818 ms
 +16 bytes from 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc, icmp_seq=1 hlim=62 time=0.967 ms
 +16 bytes from 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc, icmp_seq=2 hlim=62 time=1.060 ms
 +16 bytes from 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc, icmp_seq=3 hlim=62 time=1.084 ms
 +16 bytes from 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc, icmp_seq=4 hlim=62 time=1.202 ms
 +
 +--- 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc ping6 statistics ---
 +5 packets transmitted, 5 packets received, 0.0% packet loss
 +round-trip min/avg/max/std-dev = 0.967/1.226/1.818/0.305 ms
 +root@BGPC_H1:~ # traceroute6 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc
 +traceroute6 to 2001:db8:ffff:ffff:ffff:ffff:ffff:fffc (2001:db8:ffff:ffff:ffff:ffff:ffff:fffc) from 2001:db8:1:afe:2a0:98ff:feef:16da, 64 hops max, 20 byte packets
 +  2001:db8:1:afe::  0.454 ms  0.373 ms  0.284 ms
 +  2001:db8:1:: 0.534 ms  0.564 ms  0.508 ms
 +  2001:db8:ffff:ffff:ffff:ffff:ffff:fffc  0.785 ms  0.846 ms  0.661 ms
 +root@BGPC_H1:~ #
 +</code>
  
documentation/examples/ipv6_only_bgp_ospf_ripng_isis_lab_frrouting.txt · Last modified: 2021/02/19 17:17 by fabien

Except where otherwise noted, content on this wiki is licensed under the following license: BSD 2-Clause
Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki