"ifreload -a' failed: exit code 1" when applying config in networking [SOLVED]

rustynugget

New Member
Feb 16, 2024
2
1
3
When i hit apply configeration on networking i get the following error:
"ifreload -a' failed: exit code 1"

I googled it but i'm unsure what my issue is.
dpkg -l|grep ifupdown2

ifupdown2 3.2.0-1+pmx8 all Network Interface Management tool similar to ifupdown

"ifreload -a -d", and /etc/network/interfaces attatched.

Thank you for any help!
 

Attachments

Hi,

from the output of the ifreload.txt i see:

Code:
FileNotFoundError: [Errno 2] No such file or directory: '/etc/iproute2/rt_tables.d/ifupdown2_vrf_map.conf'
error: [Errno 2] No such file or directory: '/etc/iproute2/rt_tables.d/ifupdown2_vrf_map.conf'
Which is the file is crucial for Virtual Routing and Forwarding, in this case I would try to re-install ifupdown2 using `apt install ifupdown2 --reinstall` command. If the re-installation didn't help, could you check the file if it existed? If the file doesn't exist, please try to create `rt_tables.d` folder `mkdir -p /etc/iproute2/rt_tables.d/` and then do `ifreload -a` command.