| Summary: | vlan creation with proto option is not working - again | ||
|---|---|---|---|
| Product: | Busybox | Reporter: | Tomasz Zeman <tomasz.zeman> |
| Component: | Networking | Assignee: | unassigned |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | busybox-cvs |
| Priority: | P5 | ||
| Version: | 1.30.x | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Host: | Target: | ||
| Build: | |||
| Attachments: | Fix the keywords[] in iplink.c | ||
|
Description
Tomasz Zeman
2019-01-21 21:56:45 UTC
Fixed in git, thanks! We're diverging a bit when printing links:
ip link show dev eth0.2.24 > 0
bb ip link show dev eth0.2.24 > 1
@@ -1,2 +1,2 @@
-16: eth0.2.24@eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
+16: eth0.2.24@eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop qlen 1000
link/ether c8:5b:76:bc:16:9a brd ff:ff:ff:ff:ff:ff
what about ip -d link?
ip -d link show dev eth0.2.24 > d
@@ -1,3 +1,2 @@
-16: eth0.2.24@eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
- link/ether c8:5b:76:bc:16:9a brd ff:ff:ff:ff:ff:ff promiscuity 0 minmtu 0 maxmtu 65535
- vlan protocol 802.1ad id 24 <REORDER_HDR> addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535
+16: eth0.2.24@eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop qlen 1000
+ link/ether c8:5b:76:bc:16:9a brd ff:ff:ff:ff:ff:ff
i.e. we currently provide no means to print those vlan settings, AFAICT?
|