summaryrefslogtreecommitdiffstats
path: root/package/base-files/default/etc/hotplug.d/net/10-net
blob: 0a24b052f3c2f0c94cf19f2ce37623dc4eddec02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Copyright (C) 2006 OpenWrt.org

include /lib/network

addif() {
	scan_interfaces
	setup_interface "$INTERFACE"

	# find all vlan configurations for this interface and set them up as well
	for ifc in $interfaces; do
		config_get iftype "$ifc" type
		case "$iftype" in
			bridge) config_get ifs "$ifc" ifnames;;
			*) config_get ifs "$ifc" ifname;;
		esac
		for dev in $ifs; do
			[ "${dev%%\.*}" = "$INTERFACE" -a "$dev" != "$INTERFACE" ] && {
				add_vlan "$dev"
			}
		done
	done
}

case "$ACTION" in
	add|register)
		addif
	;;
esac