Hi, First, thank you for integrating FRR in OpenWrt. I used the latest FRR package in OpenWrt (which is FRR 7.4 release). I'm trying to configure EIGRP but it seems the "network" command is not configuring the correct network. For example, see below steps. I'm configuring "network 172.16.1.0/24" under eigrp but the running config shows "network 255.255.255.0/24" I'm not sure if this is OpenWrt specific issue or a general issue and I'll try release 7.3/7.4 on Ubuntu tomorrow. But please let me know if you latest FRR release and can successfully configure EIGRP. Thanks Amol root@arm-linux:/# vtysh Hello, this is FRRouting (version 7.4). Copyright 1996-2005 Kunihiro Ishiguro, et al. arm-linux# do show running-config Building configuration... Current configuration: ! frr version 7.4 frr defaults traditional hostname arm-linux log syslog ! password zebra ! access-list vty seq 5 permit 127.0.0.0/8 access-list vty seq 10 deny any ! line vty access-class vty ! end arm-linux# configure terminal arm-linux(config)# router eigrp 1 arm-linux(config-router)# network 172.16.1.0/24 arm-linux(config-router)# do show running-config Building configuration... Current configuration: ! frr version 7.4 frr defaults traditional hostname arm-linux log syslog ! password zebra ! router eigrp 1 network 255.255.255.0/24 ! access-list vty seq 5 permit 127.0.0.0/8 access-list vty seq 10 deny any ! line vty access-class vty ! end