-
Notifications
You must be signed in to change notification settings - Fork 429
Open
Labels
area/opsIssues or PRs related to features which support network operations and troubleshootingIssues or PRs related to features which support network operations and troubleshootinggood first issueGood for newcomersGood for newcomers
Description
Antrea defines ipsets for some features. The supportbundle currently includes iptables rules, but does not include ipset rules.
Reference:
antrea/pkg/support/dump_others.go
Lines 50 to 60 in 4e74a6b
| func (d *agentDumper) dumpIPTables(basedir string) error { | |
| c, err := iptables.New(d.v4Enabled, d.v6Enabled) | |
| if err != nil { | |
| return err | |
| } | |
| data, err := c.Save() | |
| if err != nil { | |
| return err | |
| } | |
| return writeFile(d.fs, filepath.Join(basedir, "iptables"), "iptables", data) | |
| } |
Metadata
Metadata
Assignees
Labels
area/opsIssues or PRs related to features which support network operations and troubleshootingIssues or PRs related to features which support network operations and troubleshootinggood first issueGood for newcomersGood for newcomers