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
When running netperf_test.py in Rhel8.3, in line 195 of the tearDown() function below default route gets deleted and crashes the machine self.networkinterface.remove_ipaddr(self.ipaddr, self.netmask)
Before running netperf_test.py (pulled directly from the current avocado-misc-tests) route -n will produce this output: Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 0.0.0.0 8.x.x.x 0.0.0.0 UG 0 0 0 env32 8.x.x.x 0.0.0.0 255.255.240.0 U 0 0 0 env32
After running the output is: Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface
However, commenting out the IP address removal, the routes will remain the same. The route gets deleted only after the IP address gets removed, but it does not happen immediately after the line is executed. Running netperfs on SuSE while keeping the IP address removal does not change or delete the routes, the issue occurs specifically in Rhel.
The commit that adds the line (2f6f946) is a large commit that looks like it is changing from a configure_network module to NetworkInterface module.
The text was updated successfully, but these errors were encountered:
When running netperf_test.py in Rhel8.3, in line 195 of the tearDown() function below default route gets deleted and crashes the machine
self.networkinterface.remove_ipaddr(self.ipaddr, self.netmask)
Before running netperf_test.py (pulled directly from the current avocado-misc-tests)
route -n
will produce this output:Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 0.0.0.0 8.x.x.x 0.0.0.0 UG 0 0 0 env32 8.x.x.x 0.0.0.0 255.255.240.0 U 0 0 0 env32
After running the output is:
Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface
However, commenting out the IP address removal, the routes will remain the same. The route gets deleted only after the IP address gets removed, but it does not happen immediately after the line is executed. Running netperfs on SuSE while keeping the IP address removal does not change or delete the routes, the issue occurs specifically in Rhel.
The commit that adds the line (2f6f946) is a large commit that looks like it is changing from a configure_network module to NetworkInterface module.
The text was updated successfully, but these errors were encountered: