Bug 1136733
Summary: | all addresses deleted after delete the first ip on device | ||
---|---|---|---|
Product: | Red Hat Enterprise Linux 6 | Reporter: | Sun Baoliang <blsun> |
Component: | kernel | Assignee: | Jiri Benc <jbenc> |
Status: | CLOSED NOTABUG | QA Contact: | Red Hat Kernel QE team <kernel-qe> |
Severity: | high | Docs Contact: | |
Priority: | unspecified | ||
Version: | 6.0 | CC: | dspurek, kzhang, psimerda |
Target Milestone: | rc | ||
Target Release: | --- | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2014-09-03 08:58:54 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
Sun Baoliang
2014-09-03 07:42:47 UTC
Switching to component kernel after consulting with Jiří Benc, as this is kernel behaviour, looking forward to more details from Jiří. Note: Bugzilla is currently not capable of changing the component. You're adding multiple addresses in the same subnet, thus the second and subsequent ones become secondaries. This can be seen in the "ip addr show" output, note the keyword "secondary" next to those addresses. By default, when deleting a primary address, kernel deletes also all respective secondaries. If you want one of the secondaries to be promoted to be a new primary on primary deletion, set the net.ipv4.conf.eth9.promote_secondaries sysctl. (In reply to Jiri Benc from comment #3) > You're adding multiple addresses in the same subnet, thus the second and > subsequent ones become secondaries. This can be seen in the "ip addr show" > output, note the keyword "secondary" next to those addresses. > > By default, when deleting a primary address, kernel deletes also all > respective secondaries. > > If you want one of the secondaries to be promoted to be a new primary on > primary deletion, set the net.ipv4.conf.eth9.promote_secondaries sysctl. Got it. Thanks for your answer. |