94 lines
2 KiB
Markdown
94 lines
2 KiB
Markdown
# HP Switch
|
|
|
|
[ProCurve 2910al Switches Installation and Getting Started Guide](./hp-switch/Installation_Guide_HP_2910al-Serie.pdf)
|
|
|
|
[HP Switch Software Basic Operation Guide](./hp-switch/HPE_c04490715_HP_Switch_Software_Basic_Operation_Guide.pdf)
|
|
|
|
## Factory reset
|
|
|
|
To execute the factory default reset on the switch, perform these steps:
|
|
|
|
1. Using pointed objects, simultaneously press both the Reset and Clear buttons
|
|
on the front of the switch.
|
|
2. Continue to press the Clear button while releasing the Reset button.
|
|
3. When the Self Test LED begins to blink, release the Clear button.
|
|
|
|
The switch will then complete its self test and begin operating with its
|
|
configuration restored to the factory default settings.
|
|
|
|
The factory default uses a baud rate of 9600.
|
|
|
|
## Serial console
|
|
|
|
Recommendation: use `sio` to access the serial terminal.
|
|
|
|
```sh
|
|
sudo tio --baudrate 115200 /dev/ttyS0
|
|
```
|
|
|
|
Quit with CTRL+t, q
|
|
|
|
Turn pager off: `no page`
|
|
|
|
Change screen length: `screen-length 50`
|
|
|
|
## Configuration
|
|
|
|
### Bauwagen
|
|
|
|
#### Ports
|
|
|
|
```text
|
|
console baud-rate 115200
|
|
write memory
|
|
reload
|
|
|
|
conf t
|
|
|
|
vlan 2 name jugendtreff
|
|
vlan 2 qos priority 1
|
|
vlan 2 tagged 23,24
|
|
|
|
vlan 6 name public-event
|
|
vlan 6 qos priority 0
|
|
vlan 6 tagged 13,15,21-24
|
|
|
|
vlan 7 name weinturm
|
|
vlan 7 qos priority 1
|
|
vlan 7 tagged 21-23
|
|
vlan 7 untagged 1-12,13,15,24
|
|
|
|
vlan 8 name voice
|
|
vlan 8 qos priority 5
|
|
vlan 8 tagged 21-24
|
|
vlan 8 untagged 17,19
|
|
vlan 8 voice
|
|
|
|
interface ethernet 1-12 enable
|
|
|
|
interface ethernet 13,15 enable
|
|
interface ethernet 13,15 name WLAN
|
|
|
|
interface ethernet 17,19 enable
|
|
interface ethernet 17,19 name dect
|
|
|
|
interface ethernet 21 name kleinturm-copper
|
|
interface ethernet 22 name kleinturm-fiber
|
|
interface ethernet 22 speed-duplex 1000-full
|
|
|
|
interface ethernet 23 name pbx
|
|
interface ethernet 23 enable
|
|
interface ethernet 23 speed-duplex auto-1000
|
|
|
|
interface ethernet 24 name uplink
|
|
interface ethernet 24 speed-duplex auto
|
|
|
|
vlan 1 forbid 1-12,17,19,21-24
|
|
|
|
```
|
|
|
|
* WLAN AP
|
|
* DECT OMM
|
|
* Kleinturmbühne
|
|
* Photoprism-Server
|
|
* Laptops, Drucker usw.
|