-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add podman network create flag for bridge mtu #8457
Changes from all commits
b1b3570
7f1be76
de2b15f
db70e91
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,14 @@ resolution. | |
|
||
Driver to manage the network (default "bridge"). Currently only `bridge` is supported. | ||
|
||
#### **--opt**=*option*, **-o** | ||
|
||
Set driver specific options. | ||
|
||
For the `bridge` driver the following options are supported: `mtu` and `vlan`. | ||
The `mtu` option sets the Maximum Transmission Unit (MTU) and takes an integer value. | ||
The `vlan` option assign VLAN tag and enables vlan\_filtering. Defaults to none. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just triple checking, I think the '` is intentional and needed? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry which one ? The backslash ? Editor was complaining about the "naked" underscore, so I escaped it... Maybe needlessly so. Not sure if it was seen as "half an italic" or something There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. oops, messed up the md prior. |
||
|
||
#### **--gateway** | ||
|
||
Define a gateway for the subnet. If you want to provide a gateway address, you must also provide a | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍