I’m trying to upgrade the FW of an AXC F 2152 from 2020.6.1 to 2021.0. The same DHCP configuration that worked before no longer works. Eth0 gets the IP address and subnet mask successfully, but does not get the gateway IP address. If I execute the following commands to refresh the DHCP lease after boot, it gets the gateway address successfully. dhclient eth0 -r dhclient eth0 The /etc/network/interfaces file is configured as follows: # The loopback interface
auto lo
iface lo inet loopbackauto eth0
iface eth0 inet dhcp# Wired or wireless interfaces
#auto eth0
iface eth0 inet static
address 192.168.1.10
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 8.8.8.8 8.8.4.4auto enp1s0
iface enp1s0 inet static
address 192.168.10.10
netmask 255.255.255.0
gateway 192.168.10.1
dns-nameservers 8.8.8.8 8.8.4.4Any ideas on how to make this work? Thanks, Rob H



