You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Question is a bit dumb; but I can't figure out one thing. After using testenv script for setting up veth, my internet connection gets dropped since (as far as I guess) my connections are now using newly created interface as default:
$ ip route
0.0.0.0 dev veth-basic02 scope link
default dev veth-basic02 scope link
default via 192.168.1.1 dev wlp1s0
169.254.0.0/16 dev veth-basic02 proto kernel scope link src 169.254.121.169
169.254.0.0/16 dev wlp1s0 scope link metric 1000
192.168.1.0/24 dev wlp1s0 proto kernel scope link src 192.168.1.6
I try to delete via sudo ip route del default dev veth-basic02 but no luck. Other entries are gone when I use exact same command except default dev veth-basic02 scope link . which seems to persist. I'm new to all these network namespace stuff (only used ebpf for tracing) and this becomes huge inconvenience.
If I delete the namespace, everything is fine; however whenever I need to surf the web while testing my assignments, it becomes a problem.
The text was updated successfully, but these errors were encountered:
The testenv doesn't set that default route, looks like maybe you have some other network management daemon that does that?
Highly possible. Is there a way to verify that? I have both NetworkManager and systemd-networkd but for nmcli does not have anything ordinary and systemd-networkd does not have (at least there is nothing under /etc/systemd/network) persistent artifacts.
Hello,
Question is a bit dumb; but I can't figure out one thing. After using testenv script for setting up veth, my internet connection gets dropped since (as far as I guess) my connections are now using newly created interface as default:
I try to delete via
sudo ip route del default dev veth-basic02
but no luck. Other entries are gone when I use exact same command exceptdefault dev veth-basic02 scope link .
which seems to persist. I'm new to all these network namespace stuff (only used ebpf for tracing) and this becomes huge inconvenience.If I delete the namespace, everything is fine; however whenever I need to surf the web while testing my assignments, it becomes a problem.
The text was updated successfully, but these errors were encountered: