Switch HP
Bonne pratique
Restart un switch après un temps. Cela permet de ne pas ce couper en cas de modification.
reload after 30 (en sec)
no reload
trunk
2 switch avec deux fibre
Interface
# Activation / Desctivation interface
switch(config)# interface ethernet 1
switch(eth-1)# enable
switch(eth-1)# disable
# Description d'une interface
switch(config)# interface ethernet 1
switch(eth-1)# name "TO Switch SW2"
switch(config)# interface ethernet 1
switch(eth-1)# allow-unsupported-transceiver
Vlan
Description | Commandes |
---|---|
Crée un vlan | switch(config)#vlan 99 |
Nom sur le vlan | switch(vlan-99)#name "nom du vlan" |
Assignment d'un vlan à un port
Nom | Description | Commentaire |
---|---|---|
Tagged |
trunker - faire passer des plusieurs vlans à travert le même port | |
Untagged |
access - forcer un vlan sur un port par exemple | impossible d'avoir plusieurs "untagged" sur le même port |
Mode trunk(tagged) pour faire passer le vlan 99-101 dans les port 5 à 10
switch(config)#vlan 99
switch(vlan-99)#tagged ethernet 5-10
switch(config)#vlan 101
switch(vlan-101)#tagged ethernet 5-10
switch(config)#vlan 99 tagged 5-10
switch(config)#vlan 99 tagged 5,7,9,12
Les trames non taggées (pas d'ID de VLAN) sont mises dans ce VLAN.
/!\ Un port ne peut pas être taggé et non-taggé en même temps.
switch(config)#vlan 99
switch(vlan-99)#untagged ethernet 1
LACP
SwitchA(config)# trunk 23-24 trk1 lacp
SwitchB(config)# trunk 23-24 trk1 lacp
SwitchB(config)# no trunk 23-24 trk1
### Si lacp encore la
SwitchB(config)# interface 23-24
SwitchB(eth-2-3)# no lacp
Tagged le lacp : vlan 5 tagged trk1
SNMP
Commande : active le snmp sur le switch (all)
snmp-server community "public" unrestricted
Mémoire
Description | Commandes |
---|---|
Enregister (ram > rom) | write memory save |
Reset usine | erase startup-config |
Interfaces
Description | Commandes |
---|---|
Voir les interfaces | show interface |
Information sur le tranceiver | show interfaces transceiver 28 detail |
Diagnostique
Description | Commandes |
---|---|
Voir tout la conf | show run |
Voir les vlan | show vlan |
Voir les vlan sur un port | show vlans ports ethernet 31 detail |
Savoir qu'elle switch sur qu'elle port |
show lldp info remote-device |
A tester / voir :