Browse Source

2016-05-07 Technik/Richtfunk/Geraetekonfiguration/TL-SG3210 (port 7 als uplink für den WAN port des Kernrouters, sicherheitshalber STP auf allen aktiven ports)

Ignore-this: 97c12f4d2fb83493615c2f7bca5e3491
altlast 8 years ago
parent
commit
21aaf43dab
1 changed files with 24 additions and 10 deletions
  1. 24 10
      Technik/Richtfunk/Geraetekonfiguration/TL-SG3210.page

+ 24 - 10
Technik/Richtfunk/Geraetekonfiguration/TL-SG3210.page

@@ -1,9 +1,11 @@
 ---
 title: Beispielkonfiguration TL-SG3210
-toc: no
+toc: yes
 ...
 
-Zweitentwurf für den TL-SG3210 Richtfunk-Switch im L.A.
+# TL-SG3210v2 Richtfunk-Switch im L.A.
+
+## Portbelegung
 
 Port 1
 : zum Rundstrahler
@@ -17,15 +19,22 @@ Port 5
 : lokaler Managementzugang (untagged)
 : access, VLAN 2005
 
+Port 7
+: WAN uplink für Kernrouter (untagged)
+: access, VLAN 700
+
 Port 8
 : zum Kernrouter
 : trunk, VLANs 2005,2010,2020,2021
 
 Port 9
-: zum L.A. Hausnetz
-: trunk, VLANs für uplink und lokale FF-Router mit Mesh-on-LAN
+: Glasfaser zum L.A. Hausnetz
+: trunk, VLANs für uplink (700) und lokale FF-Router mit Mesh-on-LAN (2010)
+
+## Konfigurationsdatei
 
 ~~~
+
 !TL-SG3210
 #
 vlan 700,2005,2010,2020-2021,4001-4010
@@ -143,6 +152,8 @@ interface gigabitEthernet 1/0/4
 interface gigabitEthernet 1/0/5
   switchport access vlan 2005
   description "Mgmt untagged"
+  spanning-tree
+  spanning-tree common-config portfast enable
 #
 interface gigabitEthernet 1/0/6
   switchport mode trunk
@@ -152,25 +163,27 @@ interface gigabitEthernet 1/0/6
   shutdown
 #
 interface gigabitEthernet 1/0/7
-  switchport mode trunk
-  switchport trunk allowed vlan 2005,4007
-  switchport pvid 4007
-  description "port 7 unused"
-  shutdown
+  switchport access vlan 700
+  description "WAN uplink"
+  spanning-tree
+  spanning-tree common-config portfast enable
 #
 interface gigabitEthernet 1/0/8
   switchport mode trunk
   switchport trunk allowed vlan 2005,2010,2020-2021,4008
   switchport pvid 4008
   description "FF-DO-BB-LA-kern"
+  spanning-tree
+  spanning-tree common-config portfast enable
 #
 interface gigabitEthernet 1/0/9
   switchport mode trunk
   switchport trunk allowed vlan 700,2005,2010,4009
   switchport pvid 4009
-  description "LA-Hausnetz"
+  description "WiLa-sw2:9"
   speed 1000
   duplex full
+  spanning-tree
 #
 interface gigabitEthernet 1/0/10
   switchport mode trunk
@@ -187,4 +200,5 @@ ip address 172.24.1.1 255.255.0.0
 #
 #
 end
+
 ~~~