Developing lightweight computation at the DSG edge
Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Quick Mesh Project
qMp packages
Commits
34794bb5
Commit
34794bb5
authored
Jun 06, 2016
by
Roger Pueyo Centelles
Browse files
[qmp-system] Add hooks for Lamobo R1 wired network configuration
parent
9487eaee
Changes
4
Hide whitespace changes
Inline
Side-by-side
packages/qmp-system/files/etc/qmp/hooks/lamobo-r1/lamobo-r1.sh
0 → 120000
View file @
34794bb5
../scripts/lamobo-r1.sh
\ No newline at end of file
packages/qmp-system/files/etc/qmp/hooks/lamobo-r1/lamobo-r1_vlan_12_all_ports.sh
0 → 120000
View file @
34794bb5
../scripts/lamobo-r1_vlan_12_all_ports.sh
\ No newline at end of file
packages/qmp-system/files/etc/qmp/hooks/scripts/lamobo-r1.sh
0 → 100755
View file @
34794bb5
#!/bin/sh
# Stage = [birth|firstboot|anyboot|preconf|postconf]
STAGE
=
"
$1
"
[
"
$STAGE
"
==
"birth"
]
&&
{
echo
"Configuring network for Lamobo R1"
uci
set
qmp.interfaces.lan_devices
=
"eth0.1"
uci
set
qmp.interfaces.wan_devices
=
"eth0.2"
}
packages/qmp-system/files/etc/qmp/hooks/scripts/lamobo-r1_vlan_12_all_ports.sh
0 → 100755
View file @
34794bb5
#!/bin/sh
# Stage = [birth|firstboot|anyboot|preconf|postconf]
STAGE
=
"
$1
"
[
"
$STAGE
"
==
"birth"
]
&&
{
echo
"Configuring mesh in all Ethernet ports"
uci
set
qmp.interfaces.mesh_devices
=
"eth0.12"
uci
set
qmp.interfaces.no_vlan_devices
=
"eth0.12"
uci commit qmp
}
[
"
$STAGE
"
==
"firstboot"
]
&&
{
echo
"Configuring VLAN 12 on all ports, tagged"
uci add network switch_vlan
uci
set
network.@switch_vlan[-1]
=
switch_vlan
uci
set
network.@switch_vlan[-1].device
=
switch0
uci
set
network.@switch_vlan[-1].vlan
=
12
uci
set
network.@switch_vlan[-1].ports
=
"0t 1t 2t 3t 4t 8t"
uci commit
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment