Skip to content

95 ‐ Hardware ‐ Cisco SF300‐24PP

Pilz edited this page Aug 4, 2024 · 16 revisions

Picocom

sudo picocom --b 19200 /dev/ttyUSB0

Login

user: cisco password: cisco Please change your password from the default settings. Please change the password for better protection of your network. Do you want to change the password? N

Config

Das einfügen:

conf t
no password complexity enable
vlan 10
vlan 20
interface range fa1-11
switchport mode access
switchport access vlan 10
no sh
exit
inter range fa13-23
switchport mode access
switchport access vlan 20
no sh
exit
inter range gi1-4
switchport mode trunk
switchport trunk allowed vlan add all
no sh
exit
inter 12,24
no sh
switchport mode access
switchport access vlan 30
exit
exit
copy running-config startup-config
y

Erklärung der Commands

conf t wechselt in den Konfigurationsmodus

no password complexity enable deaktiviert die Vorraussetzungen für Passwörter, dardurch ist das Passwort Freifunkmöglich.

Mit vlan 10wird das VLAN 10 angelegt.

interface range fa1-12 kann man die Ports FastEthernet1-12 auf einmal konfigurieren.

switchport mode accsess schaltet die Ports in den accsess modus.

switchport access vlan 10legt das VLAN 10 fest

no shschaletet die Ports ein, sh würde die Ports ausschalten.

switchport mode trunkschaletet die Ports in den Trunk-Modus, damit kann man mehrere VLAN über ein Interface übertragen. switchport trunk allowed vlan add all fügt alle VLANs dem Trunk hinzu