Bug 1070505
| Summary: | Requested: Traffic partitioning using SR-IOV (sans virtualization) | ||
|---|---|---|---|
| Product: | [Retired] Fedora Documentation | Reporter: | josh <josh> |
| Component: | system-administrator's-guide | Assignee: | Stephen Wadeley <swadeley> |
| Status: | CLOSED DEFERRED | QA Contact: | Fedora Docs QA <docs-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | devel | CC: | pbokoc, peterm, swadeley |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2024-05-31 13:08:02 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
josh@wrale.com
2014-02-27 01:25:39 UTC
I found a rudimentary way of implementing the requisite iproute2 commands for SR-IOV traffic partitioning: Place custom iproute2 commands for SR-IOV in one of the "-local" scripts, like '/sbin/ifup-local'. Ala: http://blog.jds2001.org/random_thoughts/2007/09/tip-of-the-day-ifup-local.html And: [root@n1 network-scripts]# grep '\-local' * ifdown:if [ -x /sbin/ifdown-pre-local ]; then ifdown: /sbin/ifdown-pre-local ${DEVICE} ifdown-post:if [ -x /sbin/ifdown-local ]; then ifdown-post: /sbin/ifdown-local ${DEVICE} ifup:if [ -x /sbin/ifup-pre-local ]; then ifup: /sbin/ifup-pre-local ${CONFIG} $2 ifup-aliases:if [ -x /sbin/ifup-local ]; then ifup-aliases: /sbin/ifup-local ${DEVICE} ifup-ippp: options="$options ipcp-accept-local" ifup-isdn: options="$options ipcp-accept-local" ifup-post:if [ -x /sbin/ifup-local ]; then ifup-post: /sbin/ifup-local ${DEVICE} init.ipv6-global: # Unreachable 6to4: IPv4 private (APIPA / DHCP link-local) network-functions-ipv6: net_log $"Given IPv6 default gateway '$address' is link-local, but no scope or gateway device is specified" err $fn [root@n1 network-scripts]# More good reading on this topic: http://www.intel.com/content/dam/www/public/us/en/documents/white-papers/config-qos-with-flexible-port-partitioning.pdf |