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
Copy file name to clipboardExpand all lines: internal/commands/networkinterface/modify.go
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,9 @@ func (s *modifyCommand) InitCommand() {
44
44
fs.StringVar(&s.bootable, "bootable", s.bootable, "Whether to try booting through the interface.")
45
45
fs.StringVar(&s.sourceIPfiltering, "source-ip-filtering", s.sourceIPfiltering, "Whether source IP filtering is enabled on the interface. Disabling it is allowed only for SDN private interfaces.")
46
46
fs.StringSliceVar(&s.ipAddresses, "ip-addresses", s.ipAddresses, "A comma-separated list of IP addresses, multiple can be declared\nUsage: --ip-address address=94.237.112.143,family=IPv4")
47
-
s.AddFlags(fs) // TODO(ana): replace usage with examples once the refactor is done.
47
+
48
+
s.AddFlags(fs) // TODO(ana): replace usage with examples once the refactor is done.
0 commit comments