Back to the main page

Port config on Ethernet switch Oracle ES1-24

There are two types of switch ports:

Access port configuration

es1-24_switch SEFOS# config t
es1-24_switch SEFOS(config)# interface extreme-ethernet 0/4
es1-24_switch SEFOS(config-if)# switchport acceptable-frame-type untaggedAndPriorityTagged
es1-24_switch SEFOS(config-if)# switchport mode access
es1-24_switch SEFOS(config-if)# switchport pvid 351
es1-24_switch SEFOS(config-if)# no shutdown
es1-24_switch SEFOS(config-if)# spanning-tree portfast

es1-24_switch SEFOS# sh interface status
Port        Status           Duplex   Speed       Negotiation
----        ------           ------   -----       -----------
Ex0/4       connected        Full     1 Gbps      Auto-Negotiation

Trunk (tagged VLANs) port configuration

es1-24_switch SEFOS# config t
es1-24_switch SEFOS(config)#
es1-24_switch SEFOS(config)# vlan 673
es1-24_switch SEFOS(config-vlan)# ports add extreme-ethernet 0/9-11
es1-24_switch SEFOS(config-vlan)# exit

es1-24_switch SEFOS(config)# vlan 674
es1-24_switch SEFOS(config-vlan)# ports add extreme-ethernet 0/9-11
es1-24_switch SEFOS(config-vlan)# exit

es1-24_switch SEFOS# show running-config shows:

!
vlan 673
 ports extreme-ethernet 0/9-11
!
vlan 674
 ports extreme-ethernet 0/9-11

Trunk (native or un-tagged VLANs) port configuration

es1-24_switch SEFOS# config t
es1-24_switch SEFOS(config)# interface extreme-ethernet 0/10
es1-24_switch SEFOS(config-if)# switchport ingress-filter
es1-24_switch SEFOS(config-if)# switchport mode trunk
es1-24_switch SEFOS(config-if)# switchport pvid 617

es1-24_switch SEFOS(config-if)# spanning-tree portfast
Warning: portfast should only be enabled on ports connected to a single host.
Connecting hubs, concentrators, switches, bridges, etc... to this interface
when portfast is enabled, can cause temporary bridging loops.
Use with CAUTION
Warning:Portfast has been configured on this port but will  have effect
only when the interface is shutdown

es1-24_switch SEFOS# show running-config 

!
vlan 617
 ports extreme-ethernet 0/1-10 untagged extreme-ethernet 0/1-10
!
!
interface extreme-ethernet 0/10
 no shutdown
 speed 10000
spanning-tree portfast
switchport pvid 617
switchport ingress-filter
switchport mode trunk

Saving configuration

es1-24_switch SEFOS# copy running-config startup-config
Building configuration ...
[OK]


Back to the main page