View | Details | Raw Unified | Return to bug 12713
Collapse All | Expand All

(-)etcnet-0.9.2.orig/docs/etcnet-options.5 (+3 lines)
Lines 213-218 Link Here
213
.TP 
213
.TP 
214
.B VID
214
.B VID
215
Required VLAN ID.
215
Required VLAN ID.
216
.TP
217
.B REORDER_HDR
218
Optional REORDER_HDR flag to vconfig.
216
.SH "DVB options"
219
.SH "DVB options"
217
.TP 
220
.TP 
218
.B DVBTYPE
221
.B DVBTYPE
(-)etcnet-0.9.2.orig/etc/net/scripts/create-vlan (-1 / +1 lines)
Lines 13-19 Link Here
13
13
14
# obsolete now?
14
# obsolete now?
15
if iface_is_up $HOST; then
15
if iface_is_up $HOST; then
16
	create_vlan_iface $HOST $VID $NAME
16
	create_vlan_iface $HOST $VID $NAME $REORDER_HDR
17
else
17
else
18
	print_error "host interface '$HOST' for '$NAME' is down"
18
	print_error "host interface '$HOST' for '$NAME' is down"
19
	exit 1
19
	exit 1
(-)etcnet-0.9.2.orig/etc/net/scripts/functions-vlan (+1 lines)
Lines 22-27 Link Here
22
		return 1
22
		return 1
23
	}
23
	}
24
	$VCONFIG add $HOST_IFACE $VID >/dev/null 2>&1 || return 1
24
	$VCONFIG add $HOST_IFACE $VID >/dev/null 2>&1 || return 1
25
	$VCONFIG set_flag $HOST_IFACE.$VID 1 $REORDER_HDR # > /dev/null
25
	local REALNAME=`get_vlan_ifname $HOST_IFACE $VID`
26
	local REALNAME=`get_vlan_ifname $HOST_IFACE $VID`
26
	if [ -z "$NAME" -o "$NAME" = "AUTO" ]; then
27
	if [ -z "$NAME" -o "$NAME" = "AUTO" ]; then
27
		NAME=$REALNAME
28
		NAME=$REALNAME

Return to bug 12713