banana-pi-r1-vlan-configuration-script
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
banana-pi-r1-vlan-configuration-script [2017/08/19 11:38] – created baumi | banana-pi-r1-vlan-configuration-script [2017/08/21 19:16] (current) – baumi | ||
---|---|---|---|
Line 1: | Line 1: | ||
~~META: | ~~META: | ||
- | &date created = 2016-05-29 | + | date created = 2016-05-29 |
- | &date modified = 2016-05-29 | + | &date modified = 2016-05-29 |
~~ | ~~ | ||
====== Banana PI-R1: VLAN Configuration Script ====== | ====== Banana PI-R1: VLAN Configuration Script ====== | ||
+ | <file bash vlan.sh> | ||
+ | #!/bin/sh | ||
+ | | ||
+ | # | ||
+ | # BPI-R1 VLAN configuration # | ||
+ | # | ||
+ | # | ||
+ | # This will create the following ethernet ports: | ||
+ | # - eth0.101 = WAN (single port) | ||
+ | # - eth0.102 = LAN (4 port switch) | ||
+ | # | ||
+ | # The swconfig port number are: | ||
+ | # |2|1|0|4| | ||
+ | # (looking at front of ports) | ||
+ | # | ||
+ | # You have to adjust your / | ||
+ | # | ||
+ | ifconfig eth0 up | ||
+ | | ||
+ | swconfig dev eth0 set reset 1 | ||
+ | swconfig dev eth0 set enable_vlan 1 | ||
+ | swconfig dev eth0 vlan 101 set ports '3 8t' | ||
+ | swconfig dev eth0 vlan 102 set ports '4 0 1 2 8t' | ||
+ | swconfig dev eth0 set apply 1 | ||
+ | </ | ||
+ | {{tag>kb linux banana-pi}} |
banana-pi-r1-vlan-configuration-script.1503135508.txt.gz · Last modified: 2017/08/19 11:38 by baumi