Skip to content

Commit b6cffca

Browse files
kahou82unclejack
authored andcommitted
disallow invalid VLAN/VNI value during network creation (#1069)
* Disallow invalid VLAN/VNI value during network creation Currently, netctl parse the pkgTag input as an integer directly. Therefore when user put a garbage in pkgTag, the conversion will default it to 0 instead. This patchset is to cast the input to string and perform further validation logic before we create network Signed-off-by: Kahou Lei <[email protected]> * Update the patchset to use IntFlag instead.
1 parent 875b175 commit b6cffca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

netctl/commands.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -216,9 +216,9 @@ var Commands = []cli.Command{
216216
Usage: "Encap type (vlan or vxlan)",
217217
Value: "vxlan",
218218
},
219-
cli.StringFlag{
219+
cli.IntFlag{
220220
Name: "pkt-tag, p",
221-
Usage: "Packet tag (Vlan/Vxlan ids)",
221+
Usage: "Packet tag (Vlan ID/VNI)",
222222
},
223223
cli.StringFlag{
224224
Name: "subnet, s",

0 commit comments

Comments
 (0)