Issue using 2 network adapters simultaneously with one for internet usage on Fedora IoT

,

Hello, this is my first form, I hope someone can help me with my issue…

I have 2 network adaptors, one crossover connection and another for internet access.
I am using wifi for my internet access and wired for my crossover. my crossover connection is working properly. I am using for fast transfer speeds between computers with NFS but obviously this connection doesn’t provide access to the internet. My issue is I am not able to update the server without unplugging or disableing my crossover network. additionally I am not able to access internet with my podman containers. I need to default my network traffic to my wireless adapter. although I am able to ping with both active so I know both are able to work. when I run “rpm-ostree update” I get the following error “error: While pulling fedora/stable/x86_64/iot: While fetching mirrorlist ‘https://ostree.fedoraproject.org/iot/mirrorlist’: While fetching https://ostree.fedoraproject.org/iot/mirrorlist: [6] Couldn’t resolve host name”
I am using Fedora 37 IOT X86 edition for a home server NAS and media server. Without advising me to use a different setup I would like to know how I can use both adapters.
I am very familiar with Linux, with over 14 yrs experience so I can take a complex answer or question.

Thank you in advance for your time.

I fixed by this command
in my case eno1 is my crossover device

first I ran IP route and found it is a default route

“ip route
default via 192.168.1.1 dev eno1 proto static metric 100
default via 10.43.15.1 dev wlp2s0 proto dhcp src 10.43.15.79 metric 600
10.43.15.0/24 dev wlp2s0 proto kernel scope link src 10.43.15.79 metric 600
192.168.1.0/24 dev eno1 proto kernel scope link src 192.168.1.2 metric 100”

then ran this to delete the route

ip route del default via 192.168.1.1 dev eno1 proto static metric 100

then to ensure it persists on reboot

nmcli connection modify eno1 ipv4.never-default yes

rebooted and now resolved

1 Like