-
Hello,
I'm doing some test in the pfsense with frr for redistribute some ipv6 routers using the Ospfv3.
I realized the web gui config is not writing correctly the route-map and the access-list IPv6.
When I do the config the /var/etc/frr/ospf6d.conf file have this:
!
frr version 7.3.1
frr defaults traditional
!
hostname vm-vrouter-01.medeiros.test
password xxxxxx
!
!
!
router ospf6
ospf6 router-id 192.168.210.241
redistribute connected route-map REDE-OSPF-OUT-v6
area 0.0.0.0 filter-list prefix REDE-OSPF-OUT-v6 out
interface vtnet5 area 0.0.0.0
!
line vty
!But the correct text in the /var/etc/frr/ospf6d.conf have to be:
!
frr version 7.3.1
frr defaults traditional
!
hostname vm-vrouter-01.medeiros.test
password xxxxxx
!
!
!
router ospf6
ospf6 router-id 192.168.210.241
redistribute connected route-map REDE-OSPF-OUT-v6
area 0.0.0.0 filter-list prefix REDE-OSPF-OUT-v6 out
interface vtnet5 area 0.0.0.0
!
ipv6 prefix-list REDE-OSPF-OUT-v6 seq 10 permit 2804:db8:15::/64 le 64
!
route-map REDE-OSPF-OUT-v6 permit 10
match ipv6 address prefix-list REDE-OSPF-OUT-v6
!
line vty
!When I made the config manually everything works ok!
Thanks
Medeiros