! ! All the same as zebra.conf ! hostname ospfd password fish enable password fish log file /var/log/ospfd.log log record-priority service advanced-vty service password-encryption ! ! no interfaces inthe bootstrap config ! ! ! ! This access-list only allows ip's and nets whithin 10.0.0.0/8 ! access-list net-10 permit 10.0.0.0/8 ! ! Same as we did with zebra.conf ! access-list term permit 127.0.0.1/32 access-list term deny any ! ! This route map uses the 'net-10' access-list to only allow routes whithin ! 10.0.0.0/8 ! ! (the 10 in 'permit 10' is just a rule number, it's a coincidence that ! it's the same as the net your filtering). ! route-map just-10 permit 10 match ip address net-10 ! ! Same as we did with zebra.conf ! line vty access-class term !