Hello,
I probably found a bug when i try to “set translate ‘never’” and no-summary in an nssa area, what i see on vyos it’s different from what is setted on frr…
sh conf commands, show it correctly:
…
set protocols ospf area 0.0.0.10 area-type nssa no-summary
set protocols ospf area 0.0.0.10 area-type nssa translate ‘never’
…
But if i check on frr:
router ospf
ospf router-id X.X.X.X
auto-cost reference-bandwidth 100
timers throttle spf 200 1000 10000
redistribute nhrp
network X.X.X.X/32 area 0
network Y.Y.Y.Y/28 area 0
network Y.Y.Y.Z/28 area 0.0.0.10
area 0.0.0.10 nssa
exit
!
I would like to simulate on GNS3 to create a case… is a GNS3 image available or i need to build a current with QEMU and virtual support? because all support for virtual env was removed from night build----
You need to build if you’re making changes to the XML files, but you can do live updates to the conf files on the system without needing to build every time. The files you’ll likely need are:
After making changes to them, you can run this to load the changes into the config module: sudo systemctl restart vyos-configd.service
So you could make this change in the jinja file:
area {{ area_id }} {{ type }} {{ 'translate-' + type_config.translate if type_config.translate is vyos_defined }} {{ 'no-summary' if type_config.no_summary is vyos_defined }}
Run:
sudo systemctl restart vyos-configd.service
And then make a change:
set protocols ospf area 10 area-type nssa translate never
set protocols ospf area 10 area-type nssa no-summary
That should now update the FRR config correctly:
cli-dev# show running-config ospfd
Building configuration...
Current configuration:
!
frr version 10.2.2
frr defaults traditional
hostname cli-dev
service integrated-vtysh-config
!
router ospf
auto-cost reference-bandwidth 100
timers throttle spf 200 1000 10000
area 10 nssa translate-never no-summary
exit
!
end
I setted env VYOS1X_REPO_URL, but i cannot set branch my branch, i tested using flavour but if i set branch test, it is used also for other repos…
After building an ISO successfully, I tried to build deb packages with my patch, doing checkout of my branch in /vyos/build/vyos-1x, I used dpkg-buildpackage as i saw on forum…
I had some trouble with testing on ipv6, i commented them… but now i have this error